adispiac
Forum Replies Created
-
Hi,
What version of our plugin are you using?Do you have the Captcha plugin installed and activated by any chance? Or any other captcha plugin?
This can help me track down what’s going on. Thanks!
That’s a good suggestion for a future feature of the Profile Builder – WooCommerce Sync add-on. Basically be able to display one of the Profile Builder register forms on the My Account page.
I’ve added this to our development list and it will be available in the next version of the add-on. I’ll make sure to let you know once it’s out.
Right now, the option you have is to uncheck Enable registration on the “My Account” page from WooCommerce settings -> Account.
This will remove the WooCommerce register form from “My Account” page.
The via this action hook: woocommerce_after_customer_login_form you can insert a message like: “Don’t have an account? Create one here.” under the login form and link it to the Register form created with Profile Builder.
Code snippet:
function woosync_login_add_custom_register_message(){ printf( __('Need an account? You can <a href="%s"> create one here</a>.','profilebuilder'),'http://www.yoursite.com/register-page'); } add_action('woocommerce_after_customer_login_form','woosync_login_add_custom_register_message');* You can add this code to your theme’s functions.php file, or in an empty plugin. Make sure to change the register link to the one specific to your site.
Hope this helps!
Glad you managed to make it work in the end and thanks for the follow-up.
This is a duplicated post, Let’s continue the discussion on the first one. I’ll close this one.
I cannot see the form, it says: “Nur ein Administrator kann neue Benutzer hinzufügen.”
Please make sure to check “Anyone can register” under Settings in your wp admin ui.
Can you try an rename it with the proper name, as mentioned above?
Did the above solve your issue by any chance?
Can you give me a link to your login page? So that I can tell you exactly how to target it.
Thanks.You can add it in your active theme style.css file.
This sounds like a conflict. I would probably need a site link to see what’s going on. Meanwhile please try to deactivate your plugins one by one and see if the issue persists.
If you have email confirmation enabled you can try this.
Or you can use the Multiple Registration Forms module from pro, where from the form settings interface you can decide if you want to auto-login and redirect users to a certain page after registration.
Hi,
Not quite sure what you mean (a screenshot or link to your website might help), but I’m pretty sure you can add more spacing by adding some more padding when targeting that certain element via CSS.Glad you figured it out. I’ll mark this topic as resolved.
Yes, using Profile Builder you can manage fields created by other plugins as well, as long as they are inside the wp_usermeta table.
All you need to do from Manage Fields is add a new field, give it the same meta-nane as the existing one, and check “Overwrite existing” from the field settings box.Great and thank you for the follow up.