sorry to bump such a old topic, but can someone show the specifc code to add to child theme functions.php? still learning here…
I tried adding this to functions, but produced an error…
function bbp_title_max_length( $default = 90 ) {
echo bbp_get_title_max_length( $default );
}
/**
* Return the maximum length of a title
*
* @since bbPress (r3246)
* @param $default bool Optional. Default value 90
* @uses get_option() To get the maximum title length
* @return int Is anonymous posting allowed?
*/
function bbp_get_title_max_length( $default = 90 ) {
return (int) apply_filters( 'bbp_get_title_max_length', (int) get_option( '_bbp_title_max_length', $default ) );
}
thx!
I can’t reproduce this behavior on bbPress 2.5.8 or trunk using the default WordPress themes. Topics and replies in private forums are listed. Are you using a custom theme? Are you running any plugins that effect user profiles? Are you running BuddyPress?
Just wondering if anyone knows of any plugins that do this. I currently use email notifications but was just wondering if SMS was an option with bbpress.
Thanks
deactivated all plugin exept bbpress, same problem.
If i change theme to standard lost my theme mod?
I want to delete the “header”, the one with freshness (see), can you help me with that?
I use BBPress Visual Composer plugins !
My website (with the header i want to remove): http://mmanouvelles.com/forum/
I use the last WP version.
Ciao tomtower,
I have been looking around on your site but didn’t find anything so far…
The only thing I can advice is to deactivate all plugins (except bbPress), change to a standard theme and then see if it works.
Otherwise some users seem to be very happy with the search plugin : https://wordpress.org/plugins/search-everything/
Just one warning for your site: On page http://www.monsterbashpincab.com/forums/ you have the 2 search boxes, so people might not know which one to choose.
Pascal.
https://wordpress.org/plugins/bbpress-protected-forums/
This is the plugin, it is exactly what I am looking for … but I dont know if its safe to use since its has not been updated for over 2 years!
What is your advice ?
Thanks ๐
Hi,
I have an ornery, but hopefully easy to solve problem. When I “create a new topic” in my BbPress forum it posts nicely, but then duplicates that post as the first reply. This makes it look like I posted the same information twice. This happens to every new post. It has been going on forever; I just got tired of it. I think it is a checkbox or something level issue. Does anyone have any ideas please?
Thanks in advance.
WordPress 4.2.5 running OneCommunity theme. Yes, this happens on all themes.
Hi tomtower,
Did you create any child themes under your topshop theme ?
Did you copy any bbpress files into the (child) theme ?
Pascal.
Hi to everybody and sorry for my english ๐
why bbpress search does not work on my site?
Thank’s
I’ve figured out the answer to my own question.
This field is related to the buddy press field wp_bp_activity. That shows something like “joe user replied to the topic xxx in the forum xxx”
_bbp_activity_id isn’t necessary for my reply to code on my particular site for bbpress to work properly. It IS however necessary if I want my Buddy Press integration to reflect activity updates related to the forum.
Hi,
this is in WP 4.3.1 GeneratePress child theme.
So far I have managed to display forum indices, topics, registration, login on actual WP pages so they can easily be designed and targeted through regular hyperlinks and menus. I used plugins like bbp StylePack and CleanLogin for this, plus the bbp shortcodes on the concerned pages.
Now there is at least one loophole that renders everything useless. e.g. when submitting a new topic the system jumps to “Topic” view where my page style settings are ignored. Is there sth like a template for the display of topics?
Also isn’t there a list of shortcodes somewhere that show ALL attribute options, too? The bbp codex https://codex.bbpress.org/features/shortcodes/ lists only the codes, without options.
Hi TKServer,
I stick to my previous comment that using bbpress functions would cause you a lot less sleepless nights ๐
For understanding the data stored, you can just create a topic, a reply and a reply-to-a-reply and check 2 tables : posts and postmeta. With some basic reverse engineering you should understand what gets saved in the few records that are added. In posts you can find the type. In the metadata you will find the parent of the item (can be a reply, a topic or a forum).
Hope this helps you,
Pascal.
Hi Ben,
It seems to be a known issue, but not bbPress related. Bug tickets have already been opened and closed for this because the issue is coming from other plugins.
You can read more here: https://codex.bbpress.org/bbp_setup_current_user/was-called-incorrectly/
But please let this not refrain you in posting here the issues you see or open a trac debug ticket yourself. It’s better to have it twice then not at all.
Pascal.
I’ve been developing a threaded forum view for one of my sites which shows bbpress posts and replies from all categories. It’s not quite like recent posts as it shows the most recent post and replies threaded, then the next most recent post etc.
I keep running into the need to implement bbpress functions but I’m outside of the bbpress pages so I’m not getting the bbpress functionality. This keeps turning into a roadblock for me.
Perhaps I can create a NEW CUSTOM Page within bbpress to achieve the ability to utilize bbpress functions? Or can I call all the bbpress functions from my custom theme OUTSIDE of bbpress?
I am trying to figure this out. I will get it eventually.
Theme Compatibility
Thanks again!
Cheers!
I found GD “bbPress Attachments”
when I upload an image and edit the topic, the files are not visible anymore.
Is it possible to configurate the path of uploades images ?
Hello,
I am searching for a Image-Uploader for bbpress.
What is recommandable?
Best Regards,
Lisa
i canโt see and option in buddypress to upload anything.
See if this guide helps.
Profile → Change Profile Photo
On this post is a simple way to add a ranking based on post count.
User ranking system?
Where it says
echo '<div class="all-stars"><i class="svg-icon one-star"></i></div>'
That is where you can add your images like this.
echo '<div class="all-stars"><img src="image source"/></div>'
Make sure they are different for each post count specified in the snippet.
You may need different CSS than what was mentioned in the post though.
Never mind, found my answer LOL just had to change one little bit ๐
//* Change BBPress Breadcrumb Seperator
function filter_bbPress_breadcrumb_separator() {
$sep = ' / ';
return $sep;
}
add_filter('bbp_breadcrumb_separator', 'filter_bbPress_breadcrumb_separator');
Hmmm, that code works but when I add it the code I added to change the seperator stops working. And if I add the function for the seperator after the code you gave me that one then stops working lol
Here is the function I am using for the seperator, maybe they need to be combined somehow to work properly together?
//* Change BBPress Breadcrumb Seperator
function custom_bbp_breadcrumb() {
$args['sep'] = ' / ';
return $args;
}
add_filter('bbp_before_get_breadcrumb_parse_args', 'custom_bbp_breadcrumb' );
This is a known bug. This might be resolved in the next release of bbPress though.
There is a workaround listed in the ticket also.
A workaround is to select the topic(s) to restore and use Bulk Action to restore.
https://bbpress.trac.wordpress.org/ticket/2734