if you are using a child theme, I’ll let you know how to do this
I’m using a paid wordpress theme. I can modify code if that is needed. I haven’t changed any bbPress theme thus far. Thanks for your help.
ok, you would be better to have a child theme to your paid theme, so maybe consider that going forward
Functions files and child themes – explained !
but what you will need to do is
find
wp-content/plugins/bbpress/templates/default/bbpress/form-user-login.php
transfer this to your pc and edit it to remove everything EXCEPT
<?php
/**
* User Login Form
*
* @package bbPress
* @subpackage Theme
*/
// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
?>
and save
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpress
where %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-user-login.php
bbPress will now use this template instead of the original, and not show the login
If you do this in your paid theme, you will need to repeat it on every theme upgrade as that will wipe your changes out, but as long as you know that, you can place the file in your paid theme, just remember what you did ! a child theme maintains these changes.
Thank you Robin, that worked! Appreciate your help. I also learned a thing or two about customizing themes.
great – glad you are fixed
thank u that worked for my website .
great – glad you are fixed
I’m having a similar issue. I installed a user registration form that uses reCaptcha, and that has eliminated bots from registering, however, if one accesses the bbPress discussion board without first logging in, they are presented with the bbPress login, and when they enter their credentials it takes them to a second login using reCaptcha and loses their credentials they have just typed in. It’s both confusing and annoying.
I used the instructions here to add ‘wp-content/themes/%your-theme-name%/bbpress/form-user-login.php’ However Filezilla throws an error, and I assume this is because my theme is locked down.
Can I get instruction to solve this by adding a child theme? (if that is the issue).
Thanks!