Forum Replies Created
-
TzMarko, I already figured out how to limit access to forums for specific bbPress roles. However, I would like to know if it is possible to restrict access to some other WordPress Pages for logged in users with specific bbPress roles.
Robin W, thanks for your reply. I might end up with using ‘Restricted Content’ plugin if I don’t find any other solutions based on bbPress user roles.
In reply to: Force all users to be subscribed to all topicsYaay! I found the solution: this plugin https://wordpress.org/extend/plugins/bbpress-notify/
In reply to: Force all users to be subscribed to all topicsThank you for your reply!
I’ve addedfunction invert_subscribe( $is_subscribed ) { return ! $is_subscribed; } add_filter( ‘bbp_is_user_subscribed’, ‘invert_subscribe’ );
to my functions.php file, but it doesn’t seem to work…
My users still don’t get email notifications for some reason.
Any suggestions?In reply to: Force all users to be subscribed to all topicsThank you for your reply John!
Excuse me my stupidity, but I don’t really get how to implement this code.
Could you explain to which file in “wp-content/plugins/bbpress” should I add this piece of code?
Should I download any extra plugins?
Thanks!In reply to: Force all users to be subscribed to all topicsThanks for your reply! Unfortunately users should receive email notifications even if they didn’t post a reply…