Hello everyone, I recently installed bbpress to my wordpress website and noticed that the forum search bar was not working at all. For example, if I search for a topic, only my blog posts show up and not any topics. I’m pretty sure that this is due to a problem with my theme because if I switch back to twenty sixteen, then the search bar works again. However, I don’t want to switch back to twenty sixteen for certain reasons. Does anyone know how to fix this issue then with the theme?
I’m using wordpress version 4.5.3, bbpress version 2.5.9, and my website is www.purposeshare.com/forums
Thanks,
David
When you create a topic would it be possible to add a user field (say under ‘Topic Tags’) with checkboxes so that you could tick certain users to notify them of that new topic? So in a way you are subscribing them to that topic.
Hi,
In responsive mode (mobile) the avatar of a participant moves up to the position of the topic.
Can i please get help to re-position it rightly.
The link to the page is http://www.agrihomegh.com/Support/topic/cassava-cultivation/
Thank you.
Hello,
I have a problem for a while. The freshness of the answers are not correct. I do not understand why !
Do you have an idea ?
Site: http://forum-ableton.fr
This is not a plugin conflict problem because even BBPress one that does not change.
Thanks in advance.
Cordially.
All,
I noticed after starting a topic, replies to it do not differentiate until there are replies to replies. I’m wondering how to 1) style the initial post (I’m fine w/ adding styling, just not sure where – the theme or the plugin?) or 2) adjust the x/y location of every response AFTER the initial post (thus adjusting every other response after). Ideally and most logically, I would “adjust” the “location” of reply a bit more to the right to indicate which reply is for which reply.
I got a separate home page and page forum. I want to display 5 recent topic / forum under a section on the home page.
Anyone could point me on the right direction would be much appreciated.
Thanks in advance.
My client has a bbpress forum and would like any images uploaded to the forum to open in a new window when viewed. I know how to make that happen on regular pages/posts but not sure if there is a way or plugin to force that feature in a forum with other users posting/uploading images.
WP 4.3.5 and BBpress 2.5.8.
Any suggestions? Thanks for any input.
Hi all,
How can I add forum icons as on http://www.thegayuk.com/forums/?
Regards,
Joseph
Hi, I am trying to add forum user profile link into wp_nav_menu_items.
Is there any way to get the forum root slug field value dynamically (just like user nickname, see $user in below code) to making the profile link dynamic? I am thinking to adding a setting option for getting the forum root slug from users in case no way to get the forum root slug fieled value.
Could anyone help? Thanks in advance.
/**
* Add bbp user profile link in WP nav menu
* Filter wp_nav_menu() to add profile link
*/
function prefix_bbp_profile_link_nav_menu($menu) {
if ( !is_user_logged_in() )
return $menu;
else
$home_url = home_url( '/' );
$current_user = wp_get_current_user();
$user = $current_user->user_nicename ;
$profilelink = '<li>
<a href="' . esc_url( $home_url ) . '/forum-slug/users/' . $user . '/edit"> '. __('Edit Profile', 'text-domain' ) .' </a>
</li>';
$menu = $menu . $profilelink;
return $menu;
}
add_filter( 'wp_nav_menu_items', 'prefix_bbp_profile_link_nav_menu' );
Is it possible to replace WordPress posts with forum topics to keep discussions at one place?