Custom Capabilities
and add
delete replies to participants
I’d suggest you contact Milan who wrote GD bbpress attachements
at support@dev4press.com.
I had a look, I think it is your theme which reloads bbpress.min.css which stops my style pack plugin settings working.
can you see if your parent theme has a bbpress file?
I made private forums using “bbp private groups” and added “GD bbPress Attachments” plugin to upload files.
Then, everyone one can access the media file despite the closed forums.
Is it possible to make media URL private?
Thanks.
Thank you, @robin-w!
So I found found the cause of the bug. There is a typo on line 303 of the “bbpress/includes/topics/template.php” file in the latest version of bbPress (2.5.14). It tries to set the “post_status” query value to “readable”. This is an invalid value for “post_status”. What the programmer intended was to set the “perm” query value to “readable”.
try this filter
//make sure scheduled stickies don't show - pending fix by bbpress
add_filter ('bbp_get_stickies', 'rew_get_stickies' , 10 , 2) ;
function rew_get_stickies ($stickies, $forum_id ) {
$return = array () ;
//check if any are future
foreach ($stickies as $sticky) {
if (get_post_status( $sticky ) !='future')
array_push ($return, $sticky) ;
}
return $return ;
}
agree, it seems to be a bug.
I have lodged a trac ticket
https://bbpress.trac.wordpress.org/ticket/3230
I’ll see how easy it is to filter for a temporary fix
I think you will need a developer. I am fully tied up, but try Milan
Freelance Programmer needed for BBpress – how/who to hire?
your site is using the bbpress.min.css file
you should copy the bbpress.css file to your childtheme as per
Theme Compatibility
and amend it there
Yes, had bbpress running for about 8 months now and no issues ever before.
Permalink reset has not worked unfortunately!
sorry, what I meant was ‘were users able to post topics and replies and now can’t, or have you recently added bbpress and topics and replies have never worked’
and did you try resetting permalinks?
ok, so
your site was working – and with no changes that you are aware of, it is now not working ?
it happens every time
with a default theme AND just bbpress the error happens – yes?
try
dashboard>settings>permalinks and just click save – this just resets the permalinks
Tearing my hair out here trying to change the content container to transparent. I’ve tried changing the bbpress.css file, putting custom css in the bbl style pack, but nothing seems to work.
Really appreciate some help here as I don’t what else I can do.
WordPress 4.9.8
bbPress 2.5.14
http://dftasmania.com/forums/topic/test-topic/
Thanks in advance.
Cheers
Longtall
Hello,
we are migrating our site which includes a bbPress forum. The migration process is pretty long. So we’d rather not close the forum for a long time.
We’ll start the migration import the whole database. The rest of the process will take several days. This means that in the meantime new discussions will be added to the forum.
We thought we could add those new discussions using the XML importer. But in our tests it didn’t work. The discussions don’t show up in the frontend. And when we try to fix them with the bbPress tools, they disappear.
Is there a way to do it?
@robin-w 1 and 2 both yes and I will contact you.
@odevbul Thanks, I already tested the above plugin as well as this
bbPress Moderation By Ian Stanley
The problem is that both plugins work for all forums and I need it for only one of my forums.
It could be a theme or plugin issue issue, so you’ll need to test to find out which
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
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.
Then come back
I have installed bbPress plugin on my WordPress site. I just wanted to know if there is any moderator approval option is available. I want Topics and Replies get visible only when they are approved by Administrator.
EN(English) and TC (Traditional Chinese) . Forum and topics seems to be working properly during the translation. But when it come to the replies section, I tried translating and it saves properly, but upon visiting the replies for the translated language TC the reply being translated cannot be seen. it says it is done translating to TC but the post reply cannot be seen. Is this a bug?
Why can’t bbpress have it’s own table to store posts etc? This will speed up db queries when using post tracking etc.
bbpress is very barebone but not very powerfull. There are plugins that extend the functionality but because of bbpress architecture it will not scale well.
Everything is stored in postmeta which grow very large. I have hundred of thousands of posts and for every post there is 10 entries in the postmeta table.
I think if bbpress can have a “normal” way of storing it’s information it will attract more users and more developers. Dedicated forum systems like Xenforo etc are superior but they are lacking everything else that you want to have on your site. There are bridges etc but it will never be the same.
There are other forums for wordpress like wpForo and Asgaros but they don’t really cut it at the moment.
Let’s bring bbPress alive by giving it a new fresh db table layout!!!
Well, I can tell you I’m totally unimpressed with the import routine for phpBB. Last count I’ve spent over 10 hours trying to figure out each of the little gotchas. And just when I’m able to get the routine to run – it doesn’t import a bloody thing. At this point, I’m about to just give up and scrap 14 years of forum posts. That or abandon bbPress and focus on fixing phpBB. Rather sad state of affairs.
Greetings,
I am looking for the pro version of the plugin: https://wordpress.org/plugins/bbp-user-ranks-lite/ which allows the ability for me to have role based badges below certain members on my forums however both the author’s website and the codecanyon posts of this plugin have been disabled so I am unable to get this plugin, if anyone has a copy they can send me or somewhere I can buy it I will be greatful.
I think this plugin works
bbPress – Moderation Tools
lots of ways to do this, you might want to have a think about the best for you
I have a plugin called
Private groups
which lets you set up groups and may be the best solution
alternately
if you are able to ftp and edit files the message is held in
wp-content/plugins/bbpress/templates/default/bbpress/feedback-no-forums.php
so
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/feedback-no-forums.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/feedback-no-forums.php
bbPress will now use this template instead of the original
and you can amend this
so go into it and amend the message to what you desire.
You could instead put this in your functions file or put it in a code plugin such as
PHP code snippets (Insert PHP)
function rew_change_text( $translated_text, $text, $domain ) {
if ( $text == 'Oh bother! No forums were found here!' ) {
$translated_text = 'whatever you want it to say in here!' ;
}
return $translated_text;
}
add_filter( 'gettext', 'rew_change_text', 20, 3 );
How can I code an activity stream that lists only the most recent post for each topic, not all recent posts (which can include many posts from the same topic) as the standard widget does?
I’m using bbPress 2.5.14, BuddyPress 3.20 and WordPress 4.9.8 on a local dev server so no public link to the site.