MemberPress: Disable MemberPress Protection On Multiple Specified Pages
add_filter(‘mepr-pre-run-rule-content’, ‘mepr_override_content_protection’, 11, 3); function mepr_override_content_protection($protect, $post, $uri) { // Unprotect posts with the specified page slug or ID if ( is_page( array( ‘slug1’, ‘slug2’, 123, 456 ) ) ) { $protect = false; // Disable protection for the specified…Continue reading