Search Results for '+.+default+.+'
-
Search Results
-
Topic: User profile full width page
When I set up bbpress first locally on my computer, I managed to get all pages for bbpress full width with no sidebars. I simply went to Theme options and set all pages and posts to default full page width tempates.
Now I am setting up bbpress on a live site. bbpress forum pages display correctly in full width, but to my unpleasant surprise the user profile page displays with a sidebar. I simply can’t get rid of the sidebar and make the page full width. This is very disappointing for me – can someone help, please? I spent so much time getting it ready beforehand and i was hoping that I would not encounter any more hurdles. Thank you.I have gone through the prior threads on this issue and I still can’t change the text in the Oh Bother box.
My site is appletechtalk.com. If you click on the Forums taband look at the bottom of the page, you will see the Oh Bother! text.
I have modified the feedback-no-forums.php file so that the text line reads “Please select a topic”. I thought that would be easier than trying to remove the box completely (which is what I would rather do).
I placed the file into my child theme. First I put it in the root of the bbpress directory and that did not help. I also recreated the directory structure in my child theme:
bbpress/templates/default
and that didn’t help either.
I am new to WordPress and bbPress as well as css and php files so I have a bit of a learning curve but I’m wondering if you have any thoughts on why this isn’t working.
Thanks,
David
Hi
we just found that default bbpress search function does not honor hidden forum setting at all
If you set a forum to be “hidden”, then you go to search for thread contents inside that hidden forum, search results still show those info under “hidden forums”.We are using default bbpress search function, not wordpress search
hope this could be fixed soon
thanks for great plugin
Topic: Dead LInks in Forum List
I am trying to use bbPress with a custom theme. I have a child theme and I have a bbpress.php created. The forum page loads but none of the links work (Forum, author, search). It’s as though the whole section is behind a sheet of glass. I can’t even select text. They work in the default themes. They work if I use the custom theme and create a page using a shortcode. Disabling all plugins doesn’t help.
It’s making me crazy. Any thoughts as to what might be blocking the page?
Unfortunately the template builder isn’t very helpful. His default response is that they never said it would work with bbpress. While true, I wouldn’t think it should eat normal functionality.
Topic: Bug in subscribe button
Hi.
I’m trying to add content before the subscribe button. It would be a fake checkbox. But I’m not being actually able to use “before” option in bbp_topic_subscription_link function.Bug can be reproduced with something like this:
bbp_topic_subscription_link(
array(
'subscribe'=>'Subscribe to thread notifications',
'unsubscribe'=>'Unsubscribe from thread notifications',
'before' => 'x'
) );
That “x” will never appear. I can see it still in line 1055 of bbpress/includes/users/template.php, just before bbp_parse_args call. After that content dissapears:
var_dump($args);
// Parse arguments against default values
$r = bbp_parse_args( $args, array(
'subscribe' => __( 'Subscribe', 'bbpress' ),
'unsubscribe' => __( 'Unsubscribe', 'bbpress' ),
'user_id' => 0,
'topic_id' => 0,
'forum_id' => 0,
'before' => ' | ',
'after' => ''
), 'get_user_subscribe_link' );
var_dump($r);
Also, there’s another issue: ajax call will not keep my custom text. After you press the button text changes to defaults: subscribe \ unsubscribe. So, what’s the point of a custom text?Hope my request is clear.
Thanks for all your work.

