Private groups
and enable topic permissions
Does this allow users to comment on the threads created in the private groups? If they are a member of that group?
Can this be used with the “bbPress Members Only” plugin?
I have not tested it with that plugin, so cannot say
In case anyone is curious, this works with the bbPress Members Only plugin.
Thanks for reporting back that it does 🙂
Bonjour,
function restrict_bbpress_topic_creation() {
// VĂ©rifier si l’utilisateur est sur une page de crĂ©ation de sujet
if ( bbp_is_topic_create() ) {
// VĂ©rifier si l’utilisateur est un administrateur
if ( !current_user_can( ‘administrator’ ) ) {
// Rediriger l’utilisateur vers la page d’accueil du forum
wp_redirect( bbp_get_forum_url() );
exit;
}
}
}
add_action( ‘template_redirect’, ‘restrict_bbpress_topic_creation’ );
Ce script vĂ©rifie si l’utilisateur essaie de crĂ©er un nouveau sujet et le redirige vers la page d’accueil du forum s’il n’est pas administrateur. Ajoute ce code dans ton fichier functions.php et teste pour t’assurer que ça fonctionne comme prĂ©vu.