This had got my head spinning. I have a new bbpress install, and have set up a login widget with a ‘Lost Password’ URI. I’ve also got a lost password page, with the [bbp-lost-pass] shortcode.
When I go direct to the page, or click on the lost password link, I can see only an empty input box, and a big ‘Reset My Password’ button. Do I have to do something else to set up the widget?
The page contents are mostly hidden in the css. The legend (which says ‘Lost Password’) is disabled (bbpress.css):
.bbp-login-form fieldset legend {
display: none;
}
And the label for the input box is hidden in the template (form-user-lost-pass.php):
<label for="user_login" class="hide"><?php _e( 'Username or Email', 'bbpress' ); ?>: </label>
So, presumably some JavaScript somewhere should magically make all this appear, but it’s not firing, or I’ve just messed up. Any ideas? Note that I also have a lost password form in Woocommerce, but disabling Woocommerce doesn’t affect this. Thanks.