- This topic has 3 replies, 3 voices, and was last updated 1 year, 11 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
WordPress Membership Plugin
Simple Membership Plugin › Forums › Simple Membership Plugin › Show excerpt for protected category
Hi, I am trying to show the excerpt of a protected post (category of posts if possible) when displayed in a feed, but when you click read more or the title of the post to see the full article/post, I would like the full post/article to be password protected. Currently, if I protect the post, the excerpt says “You need to login to view this content. Please login. Not a member? Join us.” Is there a way I could show the excerpt to non-members, but show the full article to only those signed in?
Thanks very much for your help.
Please review “Reason #4: More Tag Protection”
https://simple-membership-plugin.com/common-reasons-content-protection-not-work/
Is there no way to show the excerpt to non-members (instead of hidding the full post content but the title and featured image) without having to use the section protection feature ?
What about is the swpm_ function responsible to hide the full content of a restricted post? Any hint to modify it?
Thanks
I have implemented this solution…
add_filter(‘swpm_not_logged_in_post_msg’, ‘my_swpm_not_logged_in_post_msg’);
function my_swpm_not_logged_in_post_msg ( $output ){
$output = “<p class=\”has-background\” style=\”background-color:#fff4f4\”>🔒 Vous devez être inscrit·e et vous connecter pour voir le contenu :…”;
if (is_single ()) $output = the_excerpt() . $output;
return $output;
}