Forum Replies Created
-
In reply to: Forum relpy deletion
functions 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
In reply to: Moderator Approval option for Topics and RepliesIn reply to: Custom Fieldsok, you’d do it with a metabox in the backend topic and reply custom post types
this should get you started
In reply to: How to delete remove posts and/or threadscannot see the Trash Admin Link referenced for deleting topics from the frontend.
when you are in a topic or reply, if the admin hovers the mouse in the content part a series of admin options (admin links) appear typically edit|move|split|trash|spam| the ‘trash’ is the ‘trash admin link’ referred to
In reply to: Approve topics before posting forum specific?I can’t immediately think of any existing code.
Option 1 is the quick answer, but more manual.
It could be coded, a simple way would be to stop replies on the front end if a reply didn’t exist unless an admin.
you would need to amend form-reply.php – do you
1. have a child theme and
2. know how to ftp files to and from your PC?If so contact me via my website
In reply to: No forum found message in a members only forumlots of ways to do this, you might want to have a think about the best for you
I have a plugin called
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%/bbpresswhere %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 thisso 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
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 );