Forum Replies Created
-
In reply to: Registry List – Expandable – Self entered
no 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.β
In reply to: “User” Page seems to be stuck in a loopwhat version of Astra are you on?
In reply to: Hitting 50 forum limit? What can I do?π
In reply to: Registry List – Expandable – Self enteredif you users are registering, you’ll capture their email address in that part of the process.
If you are allowing anonymous posting, then the ‘create topic’ form has an email field which is not shown apart from to you as admin.
In reply to: Registry List – Expandable – Self enteredthanks for that, now totally understand.
Given that you have about 100 to do and they are in separate files, it would take longer to write the code, transfer the files and then run the code through them, than to just manually copy/paste into topics.
sorry, I know it is boring, but it is probably the best way.
do 10 in the morning and 10 in the evening each day, and in a week it’ll be done
In reply to: Registry List – Expandable – Self enteredso is this one text file with around 100 entries or around 100 text files?