Search Results for '+.+default+.+'
-
Search Results
-
Topic: Templates are not available
I thought I would use the default forum template, so I clicked on the form template and saved it, but for some reason it wasn’t reflected. I’d like to know the cause of this.
https://divivison.com/message-boards-around-the-world/Hi, I am using the bbPress integration with BuddyPress, so that when new BuddyPress groups are created, their respective associated forum is also created. I would like these forums to already have some topics created by default (such as rules, general chat, …), so that the user does not have to create them manually. Although the user can create more topics later, but I would like the forum to already include some topics by default when the group is created. Is it possible to achieve this? Thanks.
Topic: Integration with wp theme
I don’t understand how it is possible that bbpress in 2024 does not inherit the theme style! Buddypress inherits the theme style so it is even more absurd that bbpress does not inherit it.
Here we are not talking about new features but simply an obvious thing that should have by default.I am trying to use wp to buffer to send my topics and replies to X etc, but it does not send a featured image is there a way to set a default featured image.
wp to buffer give 3 options
1 No Image
2 Use open Graph settings
3 Use Feat..Image not linked to post.wp to buffer said “No such option for bbPress topics and replies”
but on the setup page it has settings for posts, forums, topics and replies.Hope that makes sense.
Topic: BBpress new version issue
In the new version, I am encountering a major issue where all AJAX functionality, as well as BuddyPress and other plugins, are not working properly.
I have checked every scenario, including using the default WordPress theme, and consistently face issues due to the new version of bbPress.
I kindly request you to resolve this issue as soon as possible, as my client has raised a refund request because of this problem.
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:
-
Our custom forum roles were displaying correctly a few hours ago (e.g., instead of “Keymaster,” we had “Staff/Admin”). However, after disabling forum topic tags, the custom forum roles are no longer showing up. Instead, the default roles like “Keymaster” are being displayed.
Steps Taken:-
Disabled forum topic tags in the settings.
Observed that the custom forum roles stopped displaying and reverted to default roles.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,
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