Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
In reply to: How to redirect non-member to registration form
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.
In reply to: Forum Admin Permission issueThank you so much Robin.
Much Love!
In reply to: Creating a new topicSadly when I use the following ccs code:
.bbp-form {
display: none;
}the form also disappears from the custom page I made.
Just feels that this isn’t going to work for me and thus should look into alternative forum software.
In reply to: Creating a new topicI have created a seperate page for the form quite easily using [bbp-topic-form], but how could I remove the form from the bottom of the forum?
Viewing 4 replies - 1 through 4 (of 4 total)