Forum Replies Created
-
In reply to: bbpress – newest Theme – authorization
at the footer we have statistc Information by widget for example “newest theme” .
which widget are you using?
In reply to: bbpress – subforum – Separation-signfunction custom_bbp_sub_forum_list() { $args['separator'] = ';' ; return $args; } add_filter('bbp_after_list_forums_parse_args', 'custom_bbp_sub_forum_list' );
or use
to get the lists vertical
In reply to: Visual won’t showgreat glad you are fixed
In reply to: Visual won’t showIn reply to: How can members post videos in forum?In reply to: Custom Fieldssorry – I’m just a volunteer, only so much I can do for free
In reply to: Custom Fieldsit shouldn’t create a new menu on the dashboard, just a new item in topic.
If you’d like specific help with your forum (beyond free help) contact me via
In reply to: How to update from Version 1.0-alpha-6although the best that offers is from version 1.1
In reply to: Moderator Approval option for Topics and Replieswhilst this hasn’t been updated in a few years, I think it still works
In reply to: How to export forum open topicsdashboard>topics>all topics and filter for ‘closed topics’ (button)
Use bulk actions to move to trash
then filter for ‘trash’ and use bulk actions to delete permanently
In reply to: Forum relpy deletionfunctions file, or use a snippets plugin such as
In reply to: Forum relpy deletionIn reply to: How to make media URL private?I’d suggest you contact Milan who wrote GD bbpress attachements
looking at 2.6 rc5 I think this is fixed in this version which will hopefully be a live version soon.
I doubt that 2.5.14 will get this fix.
In reply to: How i can hide author public forumI’ve removed the link as I can’t see any forums on that site.
If you have forums, please post an example
In reply to: Cannot change content backgroundor maybe you are using a plugin that minimises css files ?
In reply to: Cannot change content backgroundI 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?
so 303 should read
$sticky_query['perm'] = $r['perm'];
yes ?
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
In reply to: Users keep getting HTTP errorSites do not just stop working – there will be a change
So if nothing wordpress-wise has changed, then it must be something outside of wordpress that has changed – sorry but back to your hosters for help.
In reply to: WLM, WP Courseware and Buddypress integrationI think you will need a developer. I am fully tied up, but try Milan
In reply to: Cannot change content backgroundyour site is using the bbpress.min.css file
you should copy the bbpress.css file to your childtheme as per
and amend it there
In reply to: View group membersI don’t know of any plugins that do this, and it si not settings, so you would need someone to write code to do this
You will also under most countries data protection laws need the approval of users to their email address being published to other users.
In reply to: Users keep getting HTTP errorsorry, 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?