nothing I know of does this exactly
In
bbp style pack
dashboard>settings>bbp style pack>Topics index styling item 19
you can add a register option
Thank you for the tip.
I’m hoping someone can suggest a non-pluggin option. I currently use GD bbPress Toolbox Pro (Version 5.8.9) with bbPress. It redirects non-members at forum level, but not at topic or post level, which is what I’d like to set up.
Cheers
suggest you contact the GD bbPress Toolbox Pro author to se if he can help
Thank you. What’s the best place to find a developer who can make adaptations like this?
You could use something like this in the functions.php file:
function is_user_logged_in() {
$user = wp_get_current_user();
return $user->exists();
}
then look into adding a function in the bbpress like so:
if ( is_user_logged_in() ) {
{display the content}
} else {
{setup redirect}
}
Its a bit hard as you don’t want any plugins or addons, if you did it would be easier to just create a plugin which would automatically hook it in.
Thank you, @chalkie1983uk. Where in bbpress would the second snippet of code go?
I’ve got 28 plugins installed. I’m not trying to add any more.
Cheers