Forum Replies Created
-
In reply to: La date et l’heure dans le forum
Great – glad you are fixed π
In reply to: La date et l’heure dans le forumI would guess that you are using the bbp-style-pack and using the ‘freshness display’ gab to set the date.
If so, then in item 6 – freshness format, you need to set the separator as a space
If this is not the case, then come back and say how you are setting the date
In reply to: How to unsubscribe a member to all threads?no problem, glad you are fixed
In reply to: How to unsubscribe a member to all threads?hiver over a username as you would do to edit them, and you’ll see a subscriptions option
In reply to: How to unsubscribe a member to all threads?I have added this feature to
once activated go to
dashboard>settings>bbp style pack>Subscription Management and activate
You can then manage a users subscriptions in dashboard>users
In reply to: Registry List – Expandable – Self enteredno problem, glad to have helped π
In reply to: Registry List – Expandable – Self enteredwell this site has 7 forums with 131,555 topics. The ‘fixing wordpress’ support forum itself is powered by bbpress and that has over 700,000.
Measured in nano-seconds every topic adds to performance, but I’d suspect you’d struggle to measure any meaningful site slow down with 99.9% of sites with forums.
Ultimately it does depend on server performance and site configuration.
In reply to: Mail keymaster for all postsgreat – glad you are fixed
In reply to: Mail keymaster for all postswill let you set this up
In reply to: Registry List – Expandable – Self enteredah, ok that should all be fine.
bbpress just uses the wordpress posts and postmeta tables (with ‘custom post types’) within your website sql database, so if you move the whole site it will move with it.
No need to split this topic since it is all one logical issue π
In reply to: Registry List – Expandable – Self enteredok, moving bbpress between sites can be complex.
Is the test site a mirror of the live site?
In reply to: La date et l’heure dans le forumsorry, I do not understand the question.
Please include a link to a live example
In reply to: Different forum topics on different pagesgreat – glad you are fixed π
In reply to: Different forum topics on different pagescheck if the topic is ‘super stricky’ – that makes it appear on every forum
In reply to: Close topic labelyou’re welcome
In reply to: Closed Topic still allows repliesare you running caching software?
In reply to: Close topic labelthank you
put this in the custom css part of the style pack plugin
#bbpress-forums .status-closed, #bbpress-forums .status-closed a { background-color: transparent; }In reply to: Close topic labelwhich forum !!!!!
In reply to: Close topic labelsorry, I’m not going to keep clicking forums to try and find one, either give me one or I’ll give up
In reply to: Close topic labelok, that’s your site, but where is a closed topic?
In reply to: Close topic labelneed a link to a live example on your site
In reply to: Close topic labelput this in the style pack custom css or your theme’s custom css
#bbpress-forums .status-closed, #bbpress-forums .status-closed a { background-color: none !important; }In reply to: Close topic labelif you are using bbp-styler-pack, the the backgorund is set in
dashboard>settings>bbp style pack>Topic/Reply Display item 4
Thanks for that – very useful.
Wordpress has a bewildering set of names including username, user display name and user nicename
As far as I can see, bbpress seems to be using the user database setting for user nicename.
So can you try adding this code
add_filter( 'manage_users_columns', 'rew_add_user_nicename', 20, 1); add_filter( 'manage_users_custom_column','rew_add_user_row', 20, 3 ); function rew_add_user_nicename($columns) { $new = array(); foreach($columns as $key => $title) { $new[$key] = $title; //add the 2 columns after the forum role column if ($key=='bbp_user_role') { $new['nicename'] = 'Nicename'; } } return $new; } function rew_add_user_row($retval = '', $column_name = '', $user_id = 0) { if ($column_name == 'nicename') { $user_info = get_userdata($user_id); $user_nicename = $user_info->user_nicename; $retval = '-->'.$user_nicename.'<--'; } return $retval ; }Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
This will add a column to the dashboard>users table to show you exactly what is set as the user nicename. I have enclosed it in arrows eg
–>name here<–
so you can see if there are leading or trailing spaces.
try adding that name to the moderators and see if that works?
In reply to: Error: A variable mismatch has been detected.can you confirm that the issue you are having is this exactly
I have a topic with a reply. I wanted to split the reply into itβs own topic. Then I was going to move the new topic to another forum.
I can start the split process but when I tell it to perform the split I get this error:
βA variable mismatch has been detected.β