Forum Replies Created
-
In reply to: FSE templates and bbPress
it would be good to get bbpress working with FSE.
I am guessing that we would need either a template part that is the forums, or a forum ‘block’ .
If you are deep enough into FSE to articulate how it might work, I could do some digging.
But yes, I have probably had to grapple with a dozen ‘editors’ that various clients have been using, most of which are far superior to FSE, so whilst I do use it on some simple non bbpress sites, I haven;t really tried to get it to do anything clever, or used an FSE theme.
In reply to: FSE templates and bbPressif you have one that is close, and can tell me if it could do xx, then quite happy to take a look at how easy to clone
In reply to: FSE templates and bbPresspresume you are familiar with all these
In reply to: FSE templates and bbPressmy style pack has some code that fixes (sort of) FSE themes
install
once activated, navigate to
dashboard>settings>bbp style pack, and you should see the first tab called โTheme Supportโ โ if you donโt see this, come back.
In that tab, select
Enable Theme Support
and save
The forums should then display
If you want to look at code, then download the plugin to your computer and find
\bbp-style-pack\trunk\includes\functions_theme_support.php
I’m trying to avoid getting too deeply into FSE – I find it annoying, but appreciate that I am old and ludite, and that many find it fine or even great ๐
In reply to: “User” Page seems to be stuck in a loopthanks for confirming, yes I only put that change into the latest version ๐ wording above amended to make that clear
In reply to: Change Title of Forum Index page?plugins rarely make any difference to site performance, servers are too fast nowadays. But of course it is individual choice, and I have no desire to look judgmental.
Anyway hope you are all ok now, and enjoy your site ๐
In reply to: Search goes to infinite loop with Astra theme.for others finding this thread – if you have the additional bbp-style-pack plugin โ and why would you not have this ๐
then this fix is available at a single click โ so not coding or other plugins needed.
once activated just go to
dashboard>settings>bbp style pack and click the theme support button
In reply to: “User” Page seems to be stuck in a loopfor others finding this thread – if you have the additional bbp-style-pack plugin โ and why would you not have this ๐ – and are at the latest version
then this fix is available at a single click โ so not coding or other plugins needed.
once activated just go to
dashboard>settings>bbp style pack and click the theme support button
In reply to: bbpress showing blank pages and duplicated fieldsfor others finding this thread – if you have the additional bbp-style-pack plugin โ and why would you not have this ๐
then this fix is available at a single click โ so not coding or other plugins needed.
once activated just go to
dashboard>settings>bbp style pack and click the theme support button
Can you add a ticket to the trac system
In reply to: bbpress showing blank pages and duplicated fieldsI spent a couple of hours yesterday hunting down the issue.
This code fixes it :
add_filter ('astra_single_layout_one_banner_visibility', 'astra_bbpress_fix', 50) ; function astra_bbpress_fix ($value) { if( class_exists( 'bbpress' ) ) { if (bbp_is_single_user()) return false ; if (bbp_is_search()) return false ; } return $value ; }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: “User” Page seems to be stuck in a loopI spent a couple of hours yesterday hunting down the issue.
This code fixes it :
add_filter ('astra_single_layout_one_banner_visibility', 'astra_bbpress_fix', 50) ; function astra_bbpress_fix ($value) { if( class_exists( 'bbpress' ) ) { if (bbp_is_single_user()) return false ; if (bbp_is_search()) return false ; } return $value ; }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: Search goes to infinite loop with Astra theme.I spent a couple of hours yesterday hunting down the issue.
This code fixes it :
add_filter ('astra_single_layout_one_banner_visibility', 'astra_bbpress_fix', 50) ; function astra_bbpress_fix ($value) { if( class_exists( 'bbpress' ) ) { if (bbp_is_single_user()) return false ; if (bbp_is_search()) return false ; } return $value ; }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: remove email + website fieldgreat – glad to have helped
In reply to: remove email + website fieldApologies for the delay is responding to this.
Assuming you are ok with FTP, then
find
wp-content/plugins/bbpress/templates/default/bbpress/form-anonymous.phptransfer this to your pc and edit to remove
<p> <label for="bbp_anonymous_email"><?php esc_html_e( 'Mail (will not be published) (required):', 'bbpress' ); ?></label><br /> <input type="text" id="bbp_anonymous_email" value="<?php bbp_author_email(); ?>" size="40" maxlength="100" name="bbp_anonymous_email" /> </p> <p> <label for="bbp_anonymous_website"><?php esc_html_e( 'Website:', 'bbpress' ); ?></label><br /> <input type="text" id="bbp_anonymous_website" value="<?php bbp_author_url(); ?>" size="40" maxlength="200" name="bbp_anonymous_website" /> </p>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-anonymous.phpbbPress will now use this template instead of the original
Alternately if this all confuses you, I can do this as a plugin, but it would be a paid bit of work (but not expensive) – contact me via http://www.rewweb.co.uk/contact-me/
In reply to: Junk html under forum titles in wp๐
In reply to: Change Title of Forum Index page?ok, that is of course your choice, not sure why you are against plugins though?
In reply to: Change Title of Forum Index page?that is the wordpress profile.
so you will fix that part by
There is also a bbpress profile, but you are using the astra theme, and there is a bug which astra know about which stops it working – it just goes to a page with a permanent loop
https://wordpress.org/support/topic/bbpress-user-profile-broken-on-latest-update/
you get to a bbpress profile by clicking the username in the forums.
You can turn this off using
once activated go to
dashboard>settings>bbp style pack>Profile
In reply to: Change Title of Forum Index page?In reply to: Change Title of Forum Index page?so is this wordpress profile or bbpress profile- in essence give me the url of your profile page
In reply to: Junk html under forum titles in wpok, can you confirm that this is what is in the forum content? I can then try and help from there
In reply to: bbpress showing blank pages and duplicated fieldsgiven that Astra have not replied, if you want me to take a paid look to see if I can see the issue, contact me and we can set a budget
In reply to: bbpress showing blank pages and duplicated fieldsthis appears to be the problem reported to Astra
https://wordpress.org/support/topic/bbpress-user-profile-broken-on-latest-update/
In reply to: Change Title of Forum Index page?I will, presume you found the ‘save’ action
In reply to: Junk html under forum titles in wpthat looks like the forum descrioption – ie what is entered in
dashboard>forums>all forums>edit (a forum!) and the content under the title