Hello,
I saved permalinks and it did not work. I deleted my “Forums” page with the [bbp-forum-index] shortcode and changed themes. It worked!
Theme developer is now looking into the problems. I will let you know what comes of it all.
Thanks,
Rhek
There is stuff in your theme’s CSS that is conflicting.
Specifically the reply class.
Okay….but where can i find the code? In which file? and exactly what to look I do? realized under the “tags” I find nothing…
thank you very much
As I said we don’t have any copy and paste code to do this at the moment.
You’ll need to do some digging around in the bbPress theme and remove the tag functions. Another alternative would be to hide them with CSS but that is not ideal at all.
If you are not using BuddyPress, typically the bbp-forum-index shortcode isn’t even needed.
You should be able to just refresh you permalinks and then go to yourdomain.com/forums (unless you changed this slug)
There is no need to bump your thread 3 times in 24 hours, thats not going to help get a reply any faster.
First thing is this would be a better question to ask you theme author.
Secondly, you didn’t provide near enough information. Telling us it’s broke doesn’t give us enough info.
What theme are you using? What version of bbPress are you using? What is the URL of the site? Do you have a screenshot? What code did you use to remove the sidebar?
I could go on with the details but you get the point.
class foomanchu {
function __construct() {
add_action( ‘bb_hook’, array( $this, ‘callback_function’ ) );
}
function callback_function() {
$result = ‘foomanchu’;
return $result;
}
}
The bbPress Docs state that bbPress uses the exact same Plugin API as WordPress, yet the above would work in WordPress, but silently fail in bbPress.
any light in this would be much appreciated.
Hi at all
sorry my english is not very good;-)
where can I find the code (I think he is in the themes folder) to delete the tags?
thank you very much!
Search excludes topics/replies/forums by default – mainly because most people who install bbPress don’t have their search results styled/configured to handle the results correctly.
There are a few plugins out there that should get you started, however 
I’d check out
https://wordpress.org/extend/plugins/search-bbpress/
https://wordpress.org/extend/plugins/bbpress-search-widget/
What version of WordPress are you using? I suspect something in your theme is attempting to access a $post variable that’s been unset as part of bbPress attempting to work its magic.
You can tell that it’s using the page template, since you have some hard-coded author information in there. It’s probably something in your theme that’s trying to access something that no longer exists.
using the short code [bbp-forum-index] on a page in wordpress and for some reason it show 3 of our 4 forums and duplicates one of them. We have 4 forums (For Sale, For Rent, Rules, General) and when you load the page that has the short code [bbp-forum-index] you see (For Sale, For Rent, Rules, For Sale). I have tried deleting all forums and recreating and still get the same error. However, if you go to the system created page http://sitte.name/Forums you see the correct listing. I would use that as the forum start except I do not know where I can edit that page and its Page Name always shows the last forum created instead of ‘members forum’. Anyone seen this before? I have tried searching the forums for this condition but have not had any luck. Thanks in Advance
Zofar
Thanks for posting the shortcode [bbp-forum-index]. I was wondering how come my forums never did show up on the forums page created.
And I used this advice of yours …. nothing happened
https://wordpress.org/extend/plugins/bbpress-custom-css-file/
My friend’s website is
http://www.theReviveChallenge.com
I have created a username and password for you to see the forum
username jared
password test123
HI Jared,
This seems to be the issue I am facing as well for my friend’s website http://www.revivechallenge.com
Entire website is in black and she wants to stick to albiaza theme, however when we go to forum, the links are red (which we can dead with)
But background and text are white and one cannot read the text unless you hightlight the area.
I am not a ‘programmer’ so to speak, are you able to guide me as to –
1) which file will the above code go in?
2) Do I copy paste or do I edit these values in existing coding in that file?
I am familiar with GoDaddy FTP service and know how to get to files and directories and edit text if need to but unsure about where should above text go.
I know … I am very novice so ANY guidance you can give will be very amazing and much appreciated.
Thanks
Szebastian
See forum here:
http://www.beecavenews.com/bee-cave-forum/
1) How do I remove “Started By”?
2) Why is “Voices” and “Posts” not aligned?
3) Why is there so much vertical space?
I used the bbp-single-forum id=$forum_id] code. This also looks the same when I use the standard [bbp-topic-index]. And it looks this way with and without my custom css to change look and feel.
Thanks,
Cory
HI,
I am having the same problem:
I am running bbpress 2.0.2 under BuddyPress and although my permalinks are nice and pretty :
Code:
/%category%/%postname%/
The permalink used in the breadcrumbs is this:
http://www.foodiesplace.com/?attachment_id=431
(no idea where it got this from since the page does not exist)
The breadcrumb link should look like this:
http://www.foodiesplace.com/en/facecook-forum/
Any ideas anybody?
Thanx
in my case I went to page.php template and replaced this
comments_template();
with this
if (!stristr($_SERVER['REQUEST_URI'],'/forums/')) { comments_template(); }
where forums is my forums base
I am trying to hide some forums from some users.
This does seem to work, using the “members” plugin and by giving access to private or hidden forums.
However, if I use the shortcodes together with forum categories, only the categories are visible and not the actual forums.
Any ideas how to resolve this would be highly appreciated.
Oh, this is if I’m using the bbPress “integrated” with BuddyPress. As in I installed bbPress through BuddyPress. It seems this muddies the waters a bit. I think I’ll just wait
[root@test plugins]# find . -name bbpress
./buddypress/bp-forums/bbpress
./bbpress
./bbpress/bbp-theme-compat/bbpress
./bbpress/bbp-themes/bbp-twentyten/bbpress
[root@test plugins]# ls buddypress/bp-forums/
bb-config.php bp-forums-bbpress.php bp-forums-loader.php
bbpress bp-forums-bbpress-sa.php bp-forums-screens.php
bp-forums-actions.php bp-forums-filters.php bp-forums-template.php
bp-forums-admin.php bp-forums-functions.php
[root@test plugins]# ls bbpress (this is a svn sync)
bbp-admin bbp-languages bbp-theme-compat humans.txt license.txt
bbp-includes bbpress.php bbp-themes index.php readme.txt
[root@test plugins]#
Yep thats correct. You can pick and choose the args if you don’t want to reset all of them.
function custom_forum_breadcrumb( $args ) {
$args['sep'] = ' | ';
return $args;
}
add_filter( 'bbp_get_breadcrumb_pre', 'custom_forum_breadcrumb' );
I made a filter that set’s the before, after, sep & root_text for the breadcrumbs. Take a look, writes over the ‘bbp_get_breadcrumb_pre’ filter found on line 1553 of bbp-includes/bbp-common-template.php
// Change bbPress bread crumb separator.
function filter_bbp_breadcrumb( $args ) {
$my_args = array(
'before' => "n<div class="subnav bbp-breadcrumb ">n <ul class="nav nav-pills ">n <li>",
'after' => "</li>n </ul>n</div>nn",
'sep' => is_rtl() ? __( "</li>n <li>", 'bbpress' ) : __( "</li>n <li>", 'bbpress' ),
'root_text' => "Support"
);
$args = wp_parse_args( $my_args, $args );
return $args;
}
add_filter('bbp_get_breadcrumb_pre', 'filter_bbp_breadcrumb' );
OK — I did all that and can see the plugins/bbpress folder in Filezilla. The problem is, I can’t see it in the “plugins” page on WordPress to activate it, and the site is otherwise not recognizing it (pages I had with shortcodes aren’t working).
Sigh. I’m testing it on wavychick.com, which is a dev site for my dev site, if that makes sense.
All the plugins on bbPress.org are for bbPress 1.0.
The plugins for bbPress 2.x go on WordPress.org.
Eventually the plugins listed here will be archived to help with the confusion
You will need to do it using FTP.
1. downloads zip from link
2. unzip (will be a folder called trunk)
3. rename trunk to bbpress
4. access website via ftp, delete current bbpress folder in wp-content/plugins
5. upload new one
Yep, you can do that with the plugin – just make sure and upgrade to 2.1 before you install it. After that just head to the Genesis settings