How to show post content before read more tag (excerpt) for password protected posts?
How to show post content before read more tag (excerpt) for password protected posts?
How to show post content before read more tag (excerpt) for password protected posts?
Restrict certain character combinations in username during registration
Use an activation code to change a role [closed]
Limit post display to post authors and create an exception for specific pages
This code filter the content for custom post types “news”, you say “specific pages” so this can be adjusted to your needs. Then it checks if the user is a subscriber, and shows the content if it is, else, it just says “Not allowed”. function filter_content($content) { global $post; if ( $post->post_type == ‘news’ ) … Read more
I’ve modified this answer from brasofilo. Modify the width and height values in the following line in the below code to your needs… $maximum = array( ‘width’ => 500, ‘height’ => 700 ); … and then add the code to your theme’s functions.php file. add_action( ‘admin_init’, ‘wpse_371740_block_authors_from_uploading_large_images’ ); function wpse_371740_block_authors_from_uploading_large_images() { if( !current_user_can( ‘administrator’) ) … Read more
Protect sequence of pages with same password for each of two groups of users
I searched the documentation for WishListMember and they offer no hooks to do what you are suggesting. Have you tried a different membership system? I would suggest one of these 2 depending on your needs. Specifically, I know I have seen “redirection” in MagicMember but I believe the redirection is for where members land after … Read more
There are plenty answers on WPSE about restricting page views based on logged in users or visitors. what you should do is first check if user is logged in then check if you are on your restricted category and redirect on another page (maybe home or login page) if user is not logged in. something … Read more
Problem solved. There was a conflict with the Ninja Popups Plugin because it tries to capture any form submit. The Contributer of the Mailchimp for WordPress Plugin helped me here: https://wordpress.org/support/topic/buddypress-and-mailchimp-form-doesnt-work-together/#post-9397642