Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Troubleshooting › Your membership level does not allow you to view rest of content › Reply To: Your membership level does not allow you to view rest of content
I’ve found this error too. There is a problem with missing check when you are using category permission, but not posts protection.
Modify line 683 in wp_eMember1.php in function auth_check_post
from
if($perms->is_permitted_post($id))
to
if(!$perms->is_protected_post($id)||$perms->is_permitted_post($id))
and then you dont need to set all posts as protected.
Or set all posts as protected everytime you create a new post.
I recommend to fix this problem directly in the next release of eMember.
Could any admin provide a comment if this is a good solution?
Thanks
Jan