Forum Replies Created
-
In reply to: General Migration Questions
I’ve always taken it to mean a MySQL database.
so you are probably looking at converting eg
https://www.mysql.com/why-mysql/white-papers/guide-to-migrating-from-sql-server-to-mysql/
In reply to: bbpress – newest Theme – authorizationno problem
In reply to: bbpress – subforum – Separation-signyou can put the code in your child theme functions file or put it in a plugin like this which is probably easier
In reply to: bbpress – newest Theme – authorizationwe have a privat area for admins only.
How is this set to private ? If only admins, then it should be set to hidden
In reply to: bbpress – newest Theme – authorizationat 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.