Forum Replies Created
-
In reply to: Forum archive seems to be the WP archive
🙂 🙂 we’ve all been there 🙂
In reply to: Forum archive seems to be the WP archivehave a look at
https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ item 3 method 2
In reply to: How to disable the logged-in user informationuntested (as I am on holiday without test server access), but try
add_filter ('bbp_get_reply_author_link' , 'rew_return_null' ) ; add_filter ('bbp_get_topic_author_link' , 'rew_return_null' ) ; add_filter ('bbp_get_author_link' , 'rew_return_null' ) ; function rew_return_null () { return ; }
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
In reply to: Subscribe to all forums button🙂
In reply to: Elementor and BBpress theme builder🙂
In reply to: Elementor and BBpress theme buildersorry I’m just a bbpress user who helps out here and I have limited time to try stuff.
you could look at
https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/ item 3 method 2
🙂
In reply to: Elementor and BBpress theme builderwhat theme are you using ?
In reply to: Pagination with threaded repliesso what are you using to post iamges ?
In reply to: How To Increase Font Size of Forum Posts?actually just remembered that this plugin does this
In reply to: How To Increase Font Size of Forum Posts?I’m on holiday at the moment, but will take a look when I return sometime after 26th
In reply to: Number of posts under avatarIn reply to: How To Increase Font Size of Forum Posts?Best would be a quote link on every message that would lead to reply box with quoted content in it, is that possible ?
everything is possible but not for free 🙂
don’t know of anything for free that does this
In reply to: Show Bio as a signatureunless you want to learn coding, then another plugin is the only way. Using a plugin or putting the code in your theme functions file has exactly the same impact on performance – typically nothing that is noticeable other than by using a stopwatch !!
In reply to: How to disable the logged-in user informationdo you mean the profile?
In reply to: How To Increase Font Size of Forum Posts?and use the blockquote as above to reply to a specific point
In reply to: How To Increase Font Size of Forum Posts?Edit : actually any REPLY button on any message is simply a reply to the entire topic ?
you can enable reply threading
dashboard>settings>forums
just found this I had forgotten about
In reply to: How To Increase Font Size of Forum Posts?there are no ready made templates that I know of, apart from a couple in my style pack plugin which uses them automatically when options selected.
In reply to: Can’t registerbbpress just uses wordpress registration
dashboard>settings>general has the ‘anyone can register’ option
In reply to: How To Increase Font Size of Forum Posts?all the user customisable templates are in
wp-content/plugins/bbpress/templates/default/bbpress/
In reply to: How To Increase Font Size of Forum Posts?if you want to change the text and have FTP skills then
find
wp-content/plugins/bbpress/templates/default/bbpress/form-topic.phptransfer this to your pc and edit change line 85 to read what you want
and save
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
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/form-topic.phpbbPress will now use this template instead of the original
In reply to: How To Increase Font Size of Forum Posts?to hide
#bbpress-forums fieldset.bbp-form label { display: none; }
put this in the custom css of your theme or the custom css of my style pack
In reply to: Sticky topic position fixed problem🙂
In reply to: Disable Topic Creation For Certain Usersso create replies but not topics – yes ?