Hi, can you explain in terms for us not so savvy whats new?
And I see on your future road map about using gutenberg. Sounds cool.
Hi, can you explain in terms for us not so savvy whats new?
And I see on your future road map about using gutenberg. Sounds cool.
Hello everyone,
I hope you’re all doing well. I wanted to bring up an issue I’m encountering with our forum roles not displaying correctly for custom roles since making a recent change. Here are the details:
Issue:
Steps Taken:
Has anyone else experienced a similar issue or have any suggestions on how to resolve this? Any help would be greatly appreciated!
Thank you in advance!
Best regards,
Apologies to everyone who was quick to install 2.6.10 and had a scare.
It has been a few years; I’m out of practice and botched it.
I backported the 2.6.11 fix to the 2.6.10 tag, so in the unlikely event anyone still downloads 2.6.10 it will not be broken like it was.
Go get 2.6.11 from: https://wordpress.org/plugins/bbpress 💚
After updating to bbPress 2.6.10, every single page returns a 404 error.
This only happens for logged-out users. For the users who are logged in, the website works as expected.
there is a new update availeable but I don’t find any change logs
Does anyone has information about this new update?
I’m trying to get a default featured image to display using a filter of “post_thumbnail_id” in my child theme’s functions.php file. I’m able to add a default thumbnail for post_type of topic, but I’d like it to be a custom thumbnail based on the id, or name of the forum the topic is in. Here’s what I have so far:
function my_filter_thumbnail_id( $thumbnail_id, $post = null ) {
if ( $post->post_type != 'topic' )
return $thumbnail_id;
$forumname = get_forum_name( $post->forum_id );
if ( $forumname == "wellness")
$thumbnail_id = 7091;
return $thumbnail_id;
}
add_filter( 'post_thumbnail_id', 'my_filter_thumbnail_id', 20, 5 );
The issue is, “get_forum_name(),” is an undefined function. I’m not looking to override the default functions of bbPress, just be able to access the forum_id or forum_name from my theme’s functions.php file. Any help would be greatly appreciated! Thanks
Hello,
We are new to bbpress and are working on setting up our forums. We have some requirements and are unable to find a plugin to work for us:
1. We need to have a registration, but WITHOUT an email. We just want a username and password.
2. Moderator must approve all registrations.
Hoping someone can help us with this!
Thanks,
Theresa
bbp_get_topic_edit_link work but bbp_get_reply_edit_link not work, my page is blank, can you help me please ? (bbp_get_reply_to_link(), bbp_get_topic_edit_link() and bbp_get_reply_trash_link() works perfectly)
// change admin links displayed
add_filter ('bbp_reply_admin_links', 'change_admin_links' ) ;
function change_admin_links ($r) {
$r['links'] = apply_filters( 'rw_reply_admin_links', array(
'reply' => bbp_get_reply_to_link ( $r ),
// 'edit' => bbp_get_topic_edit_link ( $r ),
'edit' => bbp_get_reply_edit_link ( $r ),
'trash' => bbp_get_reply_trash_link ( $r ),
), $r['id'] );
return $r['links'] ;
}
thanks for your help
Topic is brief description. This is the longer one.
A mySQL database hiccup crashed our entire site (white screens of death – front and back ends). Unknown the cause. Link in recovery email didn’t work (still white screen), so I wiped and restored the database from a backup made via phpMyAdmin an hour before.
Now that the DB is restored and the site working again, I found BBP 2.6.9 to be functioning everywhere EXCEPT displaying topics and replies. Forum and Topic lists display just fine. Enabling WP debug display gives the following when clicking on a topic in any given forum:
SELECT SQL_CALC_FOUND_ROWS wp_posts.* FROM wp_posts FORCE INDEX (PRIMARY, post_parent) WHERE 1=1 AND (wp_posts.ID = 20986 OR wp_posts.post_parent = 20986) AND ((wp_posts.post_type = ‘topic’ AND (wp_posts.post_status = ‘publish’ OR wp_posts.post_status = ‘closed’ OR wp_posts.post_status = ‘tribe-ea-success’ OR wp_posts.post_status = ‘tribe-ea-failed’ OR wp_posts.post_status = ‘tribe-ea-schedule’ OR wp_posts.post_status = ‘tribe-ea-pending’ OR wp_posts.post_status = ‘tribe-ea-draft’ OR wp_posts.post_status = ‘private’ OR wp_posts.post_status = ‘hidden’)) OR (wp_posts.post_type = ‘reply’ AND (wp_posts.post_status = ‘publish’ OR wp_posts.post_status = ‘closed’ OR wp_posts.post_status = ‘tribe-ea-success’ OR wp_posts.post_status = ‘tribe-ea-failed’ OR wp_posts.post_status = ‘tribe-ea-schedule’ OR wp_posts.post_status = ‘tribe-ea-pending’ OR wp_posts.post_status = ‘tribe-ea-draft’ OR wp_posts.post_status = ‘private’ OR wp_posts.post_status = ‘hidden’))) ORDER BY wp_posts.post_date ASC LIMIT 0, 15
HOWEVER, the post_parent key most certainly exists and all topic and reply post_types are intact with non-zero values in post_parent. It is NOT Primary, because ID is primary in order to be auto increment as required by WP for post and pages, etc.
I tried to “reset” BBP by deleting it from WP plugins, hoping that reinstalling from WP plugin “store” (same version 2.6.9) would resync things. It did not.
I did install WP Staging plugin to create a sandbox clone site to allow a developer of another unrelated plugin to investigate his work. This was done AFTER the live site issue being described. This cloned the database by creating new tables with a different prefix in the same DB as the live site. So, I don’t see how the two could be conflicting. The staging site also doesn’t display BBP’s posts/replies.
I have ZERO ideas on what to do now, thus seeking HELP here. Site is https://comeandreason.com/forums/
I’ve recently created a new forum website. Users can create and post topics under different forums. Everything works perfectly on desktop and tablet, but when I try to post topics via mobile phone they don’t register. It’s as if I never submitted the topic. Any ideas? Note: I’m using the Twenty Twenty Three theme. Thanks!