The code tag doesn’t seem to work for me. I use MML data in code tags and it has been fine on other forums but seems to mess it up in bbPress. Would be nice for copy and paste options to for code tags. Here’s an example…
;[ Demo 3 | Copyright © 2015 | J. Baker ];
CH1Verse_1.s = "t12 w4 o3 \2 v40 l8 <dced> dcge4 l4 \1 <d1> r8 l8 \2 dg l4 \1 <d1> l8 \2 dge \1 <d1> \2 dcdrr v+ <<dd>> v- r"
CH2Verse_1.s = "t12 w4 o4 \1 v42 l8 >dcde< dcde#4 l4 >d1< l8 de l4 >f1 l8 ddfe1< dedfe dd r4"
Hi All,
I have been using cPanel now for just over a year and having used both Plesk & cPanel, it is a clear win for the cPanel team.
I am be no means a web developer, but I have taken a real liking to creating websites recently, after working in IT 10 years now, I wanted to try something different.
With that said, here is what I have come up with so far: https://onlineoctane.com/
Basically a car news site that myself and a group of mates update daily, with plans to monetise it in the future.
Apologies if this thread is not allowed, please remove if so.
Also wondering if anyone can shed any light on the best methods to get traffic referrals to the site too? Any help / advise would be brilliant.
Also, if car news / reviews is your thing, maybe you could head over and check it out.
Cheers
sorry, I can see no easy way to do this.
In essence the code above just calls some standard bbpress functions, and these won’t recognise that they have been called by the code, so adding content to then is not possible as far as I can see.
To do this would need some bespoke code
can only think that you have a conflict
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
I presume you are subscribed to the forums and topics that you are expecting them from – sorry, but 4 years on here and you always ask the obvious 🙂
If you have done ALL of the above, the I would set up https://en-gb.wordpress.org/plugins/bbpress-notify-nospam/ and see if that is sending, which would help reduce the issue further
then come back
Yes I can confirm this.
That being said, I take the Forum page itself is the best place to issue the bbPress Index?
Hi all,
I am building a WP website in Italian and I have installed bbPress…
Now, I can change in WP setting the language to Italian (Settings->General->Site Language), but when I use bbPress short code they are still in English…
Sorry if it is a silly question, but I dont know hwo to fix it…
For example, the short code [bbp-register] it gives me “register” instead of “registrati”…
any suggestion?
Many thanks
Regards
bbpress simply uses wordpress login, so if you get wordpress to understand that it is logged in , then bbpress will also.
Maybe one for a wordpress support forum
bbpress only displays 2 levels, so when you click the 2nd level, you will get to see the lower down forums.
It is possible to code for lower levels, if you are happy with coding you’d be looking at
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php
and some coding around bbp_list_forums()
to get a further loop
As for breadcrumb – yes by default you should have one , but themes can turn these off
if you look at the black banner at the top with the menu, you can see text scroll behind it. bbpress thinks it is displaying the start of the reply at the top of the screen, but actually it is behind the banner
from a read through all looks ok except
add_filter( 'bbp_get_teeny_mce_buttons', 'rew_remove_image_button_in_bbpress' );
should read
add_filter( 'bbp_get_teeny_mce_buttons', 'wppa_remove_image_button_in_bbpress' );
From a read through looks ok to me, but just change
add_filter( ‘bbp_get_teeny_mce_buttons’, ‘rew_remove_image_button_in_bbpress’) ;
to
add_filter( ‘bbp_get_teeny_mce_buttons’, ‘wppa_remove_image_button_in_bbpress’) ;
to run your amended function
Quick update: Tested a bit more. I’ve renamed the file that it is mistakenly using several times but it doesn’t help, bbPress uses that same file no matter what. Could it be something in the file itself that telling bbPress to use it?
Sorry for the basic questions. I thought this would be relatively simple – just rename the template I wanted to use to bbpress.php and move it to the correct folder. Not sure what to do! Thanks for the help
Hi all,
Any help would be appreciated, as I’m a serious beginner. I’m creating my own theme and adding bbPress compatability (as per instructions from bbPress here).
I’ve created a bbpress.php file and bbPress is using this template for individual forum pages, but for the forum ‘home page’ bbPress is seemingly pulling a random file titled blog.php – which isn’t an option in their template hierarchy.
Why is bbPress using this php file? I’m sure it’s something I just don’t know yet. I’m using bbPress Version 2.5.14 and the newest WP as well. Any help would be greatly appreciated! Thank you!
I have bbpress and Ultimate Member/Subscriptions. When a user cancels their subscription, they are removed from ultimate member but not from bbpress and they are still receiving notifications. I have searched through this forum and found similar issues.
I think I can fix it with AutomateWoo and a custom function. AutomateWoo can trigger the function. I just don’t know how to write a function that has a userid as an argument and then loops through unsubscribing this user.
Can anyone help? I am sure this might help others as well.
Thank you in advance.
I think i ggot it:
Filters ‘bbp_get_topic_content’ and ‘bbp_get_reply_content’. They MUST run after wpautop, so i gave them priority 1000.
All of my code to get my plugin compatible with bbpress looks now:
/* We use bbPress */
// editor bbpress in tinymce mode
function wppa_enable_visual_editor_in_bbpress( $args = array() ) {
if ( wppa_switch( 'photo_on_bbpress' ) ) {
$args['tinymce'] = true;
$args['teeny'] = false;
}
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'wppa_enable_visual_editor_in_bbpress' );
// remove insert wp image button
function wppa_remove_image_button_in_bbpress( $buttons ) {
if ( wppa_switch( 'photo_on_bbpress' ) ) {
if ( ( $key = array_search( 'image', $buttons ) ) !== false ) {
unset( $buttons[$key] );
}
}
return $buttons ;
}
add_filter( 'bbp_get_teeny_mce_buttons', 'rew_remove_image_button_in_bbpress' );
// enable processing shortcodes
function wppa_enable_shortcodes_in_bbpress( $content ) {
if ( wppa_switch( 'photo_on_bbpress' ) ) {
$content = do_shortcode( $content );
}
return $content;
}
add_filter( 'bbp_get_topic_content', 'wppa_enable_shortcodes_in_bbpress', 1000 );
add_filter( 'bbp_get_reply_content', 'wppa_enable_shortcodes_in_bbpress', 1000 );
Pleas be so kind to review this to see if i did it right or did oversee something.
Yes, in the content of the topic/reply. It makes from [photo 123] the html to display photo with id=123 from plugin wp-photo-album-plus – instead of a photo from the wp media library – according to the settings in the settings page of that plugin; e.g link to lightbox, subtitle and possible social media buttons to share the image.
The button that opens the dialog to select the photo, and optionally upload a new one, is now working without mods to bbpress, but it shows ‘[photo 123]’ instead of the picture. If the content would be filtered by the standard wp content filters, it would display the image, like it does in a wp native page or post.
@robin-w For some reason I have the same problem with the bbpress forum index. It does not work.
Here is the site link. But at the Forums level, no index.
The [bbp-forum-index] code is on the Forum created.
Any help would be great.
Hello,
I am trying to develop a forum in my wordpress site and I have installed bbPress…
My forum will have nested “categories” (down to level 3…)
let me explain better:
Forum category 1
—-> forum sub categity 1.1
———-> forum 1.1.1
———-> forum 1.1.2
———-> forum 1.1.3
—-> forum sub categity 1.2
———-> forum 1.2.1
———-> forum 1.2.2
—-> forum sub categity 1.3
———-> forum 1.3.1
Forum category 2
—-> forum sub categity 2.1
———-> forum 2.1.1
———-> forum 2.1.2
I don’t know if it is my theme or if it is a bbPress configuration, but I cannot see more than level 2
Forum category 1
—-> forum sub categity 1.1
—-> forum sub categity 1.2
—-> forum sub categity 1.3
Forum category 2
—-> forum sub categity 2.1
and to see level 3 I need to clock on level 2 categories….
on top of this I cannot see any breadcrumb navigation for the forum….. is there an option for that?
Many thanks
Regards
Hi thanks for your reply, that’s a big undertaking for my site given the amount of plugins, and combinations of plugins that may be conflicting with bbpress. I tried another theme, that seemed to work a little better, so am guessing it could be a theme conflict with bbpress.
I was more after guidelines of things that could go wrong to look out for, am guessing it uses a tags with an id to jump to the relevant post?
I think I’ll wait until I get a staging setup done, so I can test things on a non live site.
In basic bbpress, if you subscribe to a forum, then you should receive an email when a new topic is posted. If you subsequently subscribe to that topic, you should receive emails when a reply is posted.
As for the symbols, since you’re using the buddyboss theme, then I suspect that this is part of that, and as a paid product, you should check the documentation and/or raise a support ticket with them.
thanks for the post
bbpress includes a version of the wordpress ‘after..parse_args’ which will let you do this so for
•File …/wp-content/plugins/bbpress/includes/common/template.php line 1735:
change ‘tinymce’ => false, into ‘tinymce’ => true,
•File …/wp-content/plugins/bbpress/includes/common/template.php line 1736:
change ‘teeny’ => true, into ‘teeny’ => false,
you could put this code into a functions file or plugin
//editor bbpress
function rew_enable_visual_editor( $args = array() ) {
$args['tinymce'] = true;
$args['teeny'] = false;
return $args;
}
add_filter( 'bbp_after_get_the_content_parse_args', 'rew_enable_visual_editor' );
and the ability to filter functions so for
•File …/wp-content/plugins/bbpress/includes/common/template.php line 1858:
Remove array_push( $buttons, ‘image’ ); to remove the ‘standard’ image insert button that asks for a full url to an image, since we are replacing this by the [photo] shortcode generator.
use this code in your functions file or plugin
function rew_remove_image_button ($buttons) {
if (($key = array_search('image', $buttons)) !== false) {
unset($buttons[$key]);
}
return $buttons ;
}
add_filter( 'bbp_get_teeny_mce_buttons', 'rew_remove_image_button' );
The you don’t need to alter bbpress files
Let me know if I can help further
hmm, apart from the standard elimination tests below, I can’t think of anything obvious
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
@heero I know this thread is old but it still shows up 1st page when I search bbPress themes. So I thought it would be worth providing an upto date answer for future viewers.
The 1st stop I would recommend is checking out wordpress.org/themes where you can find thousands of themes.
However, if you don’t want to spend all day looking through their directory then check out Softwarefindr a platform were forum owners using bbPress give a shortlist of their recommended bbPress themes.