Search Results for 'test'
-
Search Results
-
I’m wanting to create conditional logic that responds to whether a user is logged in to bbpress.
Googling helped me to find these two functions:
bb_current_user_can()
bb_is_user_logged_in()However, when I use them, I get the error “Call to undefined function bb)…”.
This happens even when I tie my containing function to the hook ‘plugins_loaded’, which I believe fires after all activated plugins have loaded.
(I first tried to use the hook ‘wp’)
So I’m just double-checking…
Should I be able to use either of those two functions to test if a user requesting a resource is a logged-in bbpress user?
I’ve done something, but I don’t know what? I think the slugs for the ‘forum’ page may have had a conflict (there was a warning message, but I changed the names), and I think the tabs went missing after I rebuilt the tables, but the tabs have totally disappeared now, and I don’t know how to get them back. Its a backend issue, as its not affecting the front end – you can still get to the forum page
I uninstalled and deleted/reinstalled bbpress, and it hasn’t brought the tabs back.
I’m really worried that if I delete the Buddypress plugin, I will lose my settings and customer lists of Participants. Any advice would be very much appreciated.
bbPress Version 2.6.6
Buddypress Version 8.0.0
Wordpress the latest
FORUM HERETopic: Compatibility Inquiry
Hello,
I currently have this plugin installed onto my website which I plan on updating soon and I would like to know if it is compatible with the latest version of WordPress 5.7.2.
The current version of WordPress I am running is 5.5.5.
Topic: is_bbpress not working
I’m trying to detect requests for the bbpress forum index page.
Initially I tried ‘bbp_is_forum_archive()’.
This doesn’t return true from the forum archive page.I decided to test if any bbpress conditional tags were working, so I tested ‘is_bbpress’, because the function calls many (maybe all?) of the other conditionals.
However, ‘is_bbress’ doesn’t return true either.
However, on any page in my site, whether bbpress is on that page or not, this condition returns true:
‘if ( ! is_bbpress() )…’What could be happening here?
This is my function and the hook I’m using:
add_action('init', 'test_bbpress'); function test_bbpress() { if ( is_bbpress() ) { wp_die("got to the forums page") ; }
}
Hi,
I’m presently working on a beta version of an existing bbPress WP Website, and I’ll need to retrieve ONLY the latest bbpress activity from the prod website to the beta website (only new users, new subjects etc …) I can not find a way to do it (the import/export tool deal with ALL the data which i don’t need)
Any suggestion would be greatly appreciated.Hi,
I’m testing my new website and found a problem with user registration. When a new user registers (in this case myself using a different email address), the verification email isn’t being send to the user.
I, as an admin receive the email that the user x is registered.
Wondering what could cause this issue? and is there any known fix for this?
After installing bbpress I have a set of forums.
Every forum is presented using a php template in my child theme.
The php template has the filename bbpress.php.I’d like to create a php template that applies *just* to the individual forum pages. Not the forum topics or singles. Or anything else.
I’ve been looking at this:
The heirarchy seems to suggest that you can use ‘single-[forum].php’, which suggests that ‘[forum]’ needs to be substituted with the name of the forum.
… which is great. But I want one template to be applied to all forum singles and nothing else.
Just to test, I copied my existing bbress.php to a file called ‘single-forum.php’.
bbpress did pick this up and use it for my forum singles.
But the page didn’t present the actual forum. Where the forum should have been, there was just empty space.So… how do I create a template that gets applied to all forums and nothing else?