Search Results for 'test'
-
Search Results
-
Topic: Latest reliable PHP version?
What’s the latest version of PHP that bbPress can reliably run on?
The most recent update says it improved PHP 8.2 support, but it crashes on the dev site I’m running that is on 8.2.29. Is there an earlier version that is known to work well?
Also, does anyone know what the developers’ plans are for PHP versions beyond 8.2? I was hoping to upgrade our sites to 8.4, but bbPress is the limiting factor on a couple of them.
Topic: Post Edit Error
With a script I made with chatgpt (and a lot of testing), I managed to migrate an old custom forum to bbpress.
I only have one error… basically, when I go to edit a post, I get a page error.
Virtually all the posts I try to edit (if a thread has 5 replies, all replies have that URL on edit) have this URL /?reply&edit=1 (I’ve disabled the parmalink for now).
Do you know what I could do?
If I try to edit the thread, it works.
ThanksHello everyone
My site is using the latest WordPress 6.8.2 with WordPress 2025 theme and BBPress community
To change the color of closed topics in
13. Preventing closed topics from going grey
At address:
The following code:
#bbpress-forums .status-closed,
#bbpress-forums .status-closed a {
color: #aaa !important;
}is introduced.
I put it in the css snippet of WPCode plugin. but the code doesn’t work.
Can anyone help me fix the problem?
Thanks
Topic: Redirect code not executing
Hi everyone
My site is using the latest WordPress 6.8.2 with WordPress 2025 theme and BBPress community
In
27. Custom Redirect After LoginAt address
The following dual-purpose redirect code:
/**
* WordPress function for redirecting users on login based on user role
*/
function my_login_redirect( $url, $request, $user ){
if( $user && is_object( $user ) && is_a( $user, ‘WP_User’ ) ) {
if( $user->has_cap( ‘administrator’ ) ) {
$url = admin_url();
} else {
$url = home_url();
}
}
return $url;
}
add_filter(‘login_redirect’, ‘my_login_redirect’, 10, 3 );It is introduced that I have it in the php sippet file of the WordPress plugin code but I am getting the error
Your changes are saved but your snippet was deactivated due to an error, please check the syntax and try again. Error message: syntax error, unexpected token ;
It seems that there is a problem with the code.
Can anyone help to fix the problem?
Hello forum members
My site is using the latest version of WordPress 6.8.2 and the 2025 Block Theme and BBPress Forum.
I want to use the classic theme for BBPress Forum instead of the Block Theme
Please guide me how can I activate my favorite classic theme instead of the default BBPress theme?
Thanks