adispiac
Forum Replies Created
-
For the link to appear you need to fill in the Password Recovery page URL, in the Profile Builder Login Widget settings (Appearance -> Widgets).
No worries ๐ You can always support our work by leaving a review.
Are you using Profile Builder for approving users?
Since Admin Approval is available starting with Hobbyist version please get in touch via our dedicated support channel.
One of my colleagues will assist you.Actually you don’t need to write any PHP to achieve this.
It can all be done by simply adding a register_url parameter to the login shortcode:
[wppb-login register_url="www.example.com/your_register_page"]This will basically add a link below the login form, which people who don’t have an account can click to register.
Hope this helps. You can find more info here.
Hi,
Upload fields are supported in both Hobbyist and Pro versions. If you need extra information please get in touch via this pre-sale form, as this forum is dedicated to the free version only.Thank you!
Hi,
You can create a front-end edit profile form using the [wppb-edit-profile] shortcode in any page.You can then change the link from “Test” user which now points to the author archive page using this filter: wppb_login_message.
You can use the following code:
function wppb_change_login_message_link( $logged_in_message, $user_ID, $display_name ){ $logged_in_message = '<p class="wppb-alert">'; $user_url = '<a href="enter your edit profile page link" title="'.$display_name.'">'.$display_name.'</a>'; $logout_url = '<a href="'.wp_logout_url( $redirectTo = wppb_curpageurl() ).'" class="wppb-logout-url" title="'.__( 'Log out of this account', 'profilebuilder' ).'">'. __( 'Log out', 'profilebuilder').' ยป</a>'; $logged_in_message .= sprintf(__( 'You are currently logged in as %1$s. %2$s', 'profilebuilder' ), $user_url, $logout_url ); $logged_in_message .= '</p><!-- .wppb-alert-->'; return $logged_in_message; } add_filter('wppb_login_message','wppb_change_login_message_link', 10, 3);Make sure to add the code above in an empty plugin or your active theme’s functions.php.
* Replace the link in the code above with the link to your front-end edit profile page.As for preventing the users to ever access the back-end dashboard, I would suggest you have a look into Custom Redirects module available in the Pro version.
Hi,
You can create a Recover Password form using the shortcode: [wppb-recover-password] in any page.First the user will need to enter his Username or E-mail and it will receive an email confirmation for password reset. By clicking the email link, it will be taken to a form to fill in the new password.
Hope this helps.
Great, thanks for letting us know.
Thanks for letting us know and really glad it’s solved now. I’ll mark the topic as resolved.
The only way we could debug this further would be to write to us here and get access to the site to have a closer look.
Did you by any chance installed or activated any plugin(s) since yesterday, when it was working?
Could you try and deactivate Groups plugin and see if the issue persists? It sounds like a plugin conflict.
Could you get in touch here? We might need access to have a closer look at your website/server configuration to see what’s going on.
If your theme’s header supports adding a widget, then you can add the existing Profile Builder Login widget there.
Otherwise you’ll probably need to custom code this functionality and display the PB login form using do_shortcode(‘[wppb-login]’);
Adding and managing custom user fields is only available in Profile Builder Hobbyist or Pro versions.
If there’s anything else, please let me know.