adispiac
Forum Replies Created
-
Ok, thanks for the follow up. I’ll close the topic then.
Hi,
Sorry you had problems getting the translation to work.From what you described I think you got the naming wrong, it should be:
profilebuilder-nb_NO.mo/.poHope this helps.
This shouldn’t happen. Can you provide a link to your website so I can test it and have a look myself?
ThanksI think you posted this questions twice by mistake. I’ve already replied here.
Sorry about the delay. You can easily achieve what you initially wanted using CSS.
Thanks for the follow-up, I’ll mark the topic as resolved.Yes, you can do that using the Multiple Registration forms module from pro.
The form settings allow you to automatically log users in after registration as well as redirect them to a certain page of your choice.Also, if you’re a pro user please get in touch via our dedicated support channel. We should keep discussions on this forum related to the free version only.
This can be easily done using the Userlisting module from Pro.
This basically allows you to display a list of all your users to visitors, as well as individual profiles (see Single Userlisting template) which can include all the user fields added with Profile Builder.This can be achieved directly from the interface using the Multiple Registration Forms module from Pro.
The form settings allow you to automatically log users in after registration as well as direct them to the page of your choice.
Please have a look at this topic.
Hi everyone,
We’ve just release a new version of Profile Builder which is fully compatible with the Captcha plugin.
Please update to the latest version and let me know if everything is fine.
Also it would mean a lot if you could take a few minutes and support our work by leaving a review.Hi Arkona,
Profile Builder is fully localized. How exactly are you trying to translate the plugin? Modifying the php files is not the way to do it.
Please have a look at translate.cozmoslabs.com, which will help you translate the plugin, as well as download the existing translation files.
Hope this helps!
Hi and thank you for your kind words.
What you’re asking can be achieved using the Custom Redirects module from Pro.
This basically allows you to keep your users out of the WordPress dashboard and redirect them to front-end Profile Builder forms for login, register, recover password etc.Hi,
By default the from email used by the plugin is the admin one set under Settings – General in your admin UI.
This can be changed using the UI from Email Customizer module, available in PRO.
It also allows you to customize the email texts for register, recover password, admin approval etc.Hi,
We actually have a filter in place which you can use to set the username the same as the email address, in case you login with Email only: wppb_generated_random_uername.
function wppb_same_username_as_email($username, $email){ $username = sanitize_email($email); return $username; } add_filter('wppb_generated_random_username', 'wppb_same_username_as_email',10, 2);Make sure to place this code in an empty plugin or your active theme’s functions.php file.
P.S. Thank you for your kind words regarding the plugin.
You can always support our work by leaving a review :).By default no, the register or edit profile forms list all the fields from Manage Fields interface.
If you only need to display the last and first name field data for a logged in user, you can use the get_user_meta function, and create a simple custom shortcode that outputs only this information.