Tagged: groups troubleshooting
I am using the Groups Tab Pro plugin and it’s working great. I’m hoping to restrict access to pages using a plugin called Groups (By itthinx). As soon as I installed the Groups plugin to restrict access to pages it also hides the content of all added tabs.
I’m still troubleshooting but think there might be a conflict between these two plugins. I was hoping to really use Groups since it’s lightweight and seems like a very stable plugin. Do you know what the problem is? If this can’t be resolved can you recommend a page restriction plugin like Groups that is compatible?
These are my active plugins:
https://monosnap.com/file/jUVWawTgSQG6HOZj4SU249FkmnumUaI’m able to add a new tab:
https://monosnap.com/file/o97z1vR7t1dld6Cbk6y3V2bpvUqBR1As soon as I install and activate Groups:
https://wordpress.org/plugins/groups/Any custom tab content disappears:
https://monosnap.com/file/Sm9VX9tMpDw9RO7nfbeuumyzayk1zEHi,
Thank you for reporting the issue.Please allow us to test and get back to you on Monday.
Regards
BrajeshHi,
Thank you for the patience.The “Groups” plugin enables content filtering On by default and hide contents for the post unless excluded(I am guessing the exclusion part).
Here is the code that you can put in bp-custom.php to disable this on the BuddyPress single group page
/** * Disable groups plugin content filtering. */ add_filter( 'groups_post_access_the_content_apply', function ( $apply ) { if ( function_exists( 'bp_is_group' ) && bp_is_group() ) { $apply = false; } return $apply; } );
That will make it work.
Regards
BrajeshThank you. I look forward to your feedback.
Regards
Brajesh
You must be logged in to reply to this topic.