Forum Replies Created
-
In reply to: Custom Fields
sorry – 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?
In reply to: Users keep getting HTTP errorok, 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
In reply to: Users keep getting HTTP errorUsers keep getting an HTTP 500 error when trying to post
every time, mostly, sometimes?
all users, some users, participant, keymaster?
topics, replies, both ?In reply to: Looking for bbPress User Ranks PluginIn reply to: Custom Fieldsyou need to alter ‘post’ to topic and reply eg (untested)
function adding_custom_meta_boxes( $post_type, $post ) { add_meta_box( 'my-meta-box', __( 'My Meta Box' ), 'render_my_meta_box', 'topic', 'normal', 'default' ); add_meta_box( 'my-meta-box2', __( 'My Meta Box 2' ), 'render_my_meta_box', 'reply', 'normal', 'default' ); } add_action( 'add_meta_boxes', 'adding_custom_meta_boxes', 10, 2 );In reply to: Users keep getting HTTP errorIt 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