Forum Replies Created
-
In reply to: Disable Topic Creation For Certain Users
so create replies but not topics – yes ?
In reply to: How To Increase Font Size of Forum Posts?π thanks !
In reply to: Forum Repair Tool Automationthe functions are in
\includes\admin\tools\repair.php
so you should eb able to work out which ones you need
In reply to: How To Increase Font Size of Forum Posts?dashboard>settings>bbp style pack
In reply to: Forums menu does not appearπ
one to raise in either (or both) of those plugins support forums, but pretty sure one will be overwriting the others filter
In reply to: BBPRESS Feeds : All Recent Postsπ thanks for posting the solution
In reply to: Forums menu does not appearok suspect that your forum role is wrong – you need to be a keymaster, and onky keymasters can set other keymasters.
look in dashboard>users>all users an you will see ‘forum role’ which shows what each user is set to
In reply to: Formatting of User Profile and Search Results pagesπ
π
In reply to: Formatting of User Profile and Search Results pagesonce activated go to
dashboard>settings>bbp style pack>Profile
and choose what you want to display
In reply to: Visual Editor is not workingπ
In reply to: Visual Editor is not workingwith wordpress 5.9 this works on my test site
go to
dashboard>settings>bbp style pack>topic/reply form and look at item 9
In reply to: Formatting of User Profile and Search Results pagessorry, I’m just a bbpress user who helps out – they won’t listen to me π
In reply to: Issue with Polylangthanks for posting this π
if you are just registering a single user in dasjboard>users, then they should get the wordpress registration
In reply to: How To Increase Font Size of Forum Posts?In reply to: toolbar & buttons not showing in my firefoxπ
In reply to: Remove @Username from profilesok, so if my solution above does not work, your issue is site specific, so without visiting your site and an example I cannot give you code – in essence I can look at what the browser is receiving and see the correct code needed. You can contact me via my website
and give me some access details, and I will try and help further.
However alternately if you know how to use FTP, you could try this
find
wp-content/plugins/bbpress/templates/default/bbpress/user-profile.phptransfer this to your pc and edit
you will see that line 16 says
<h2 class="entry-title">@<?php bbp_displayed_user_field( 'user_nicename' ); ?></h2>
delete this line and save
then 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/loop-single-reply.phpbbPress will now use this template instead of the original
In reply to: toolbar & buttons not showing in my firefoxthis is a known bug.
either
if( !function_exists( 'bbpress_browser_supports_js' ) ){ function bbpress_browser_supports_js() { echo '<script>document.body.classList.remove("no-js");</script>'; } add_action( 'wp_footer', 'bbpress_browser_supports_js' ); }
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
or
install
which has the fix built in
In reply to: bbPress as StandaloneWould I just useβ for exampleβ an existing WP installation, and install the latest bbPress as a plugin? Then, once installed in WP as a plugin, I go to bbPress, dashboard > tools > β¦ ?
basically yes π
In reply to: bbPress as Standalonebbpress now requires wordpress, but you can set these two up with bbpress version 2.x, and then import the bbpress1 forum
so once installed go to
dashboard>tools>forums>import forums and select bbpress1
In reply to: Remove @Username from profileslink to an example on your site plaese
In reply to: Remove @Username from profilesit may be a load order issue, try
#bbpress-forums #bbp-user-wrapper h2.entry-title { display: none !important; }