Show only topics to public visitors.
-
Hello All,
I am trying to hide all the replies for anonymous or public. I added the following code:
function custom_bbp_show_lead_topic( $show_lead ) { $show_lead[] = 'true'; return $show_lead; } add_filter('bbp_show_lead_topic', 'custom_bbp_show_lead_topic' ); function remove_forum_replies_guest() { if ( !is_user_logged_in() ) { remove_action('bbp_before_has_replies_parse_args', 'bbp_replies') ; } } add_filter('bbp_has_replies_query', 'remove_forum_replies_guest');
It removes all the replies not only for public (non-logged in visitors) but also from logged in users.
Any help will be appreciated.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.