Comments on: Create a custom login/register page for WooCommerce using Divi BodyCommerce https://diviengine.com/how-to-create-a-custom-login-register-page-for-woocommerce-and-divi/ Boost the power of your Divi website Fri, 17 Nov 2023 12:27:21 +0000 hourly 1 https://wordpress.org/?v=6.5.4 By: Divi Engine https://diviengine.com/how-to-create-a-custom-login-register-page-for-woocommerce-and-divi/#comment-224552 Wed, 01 Mar 2023 20:57:41 +0000 https://diviengine.com/?p=5551#comment-224552 In reply to Erman Seneren.

Divi BodyCommerce can still do this đŸ˜€ Give that a try

]]>
By: Erman Seneren https://diviengine.com/how-to-create-a-custom-login-register-page-for-woocommerce-and-divi/#comment-224423 Tue, 28 Feb 2023 15:36:39 +0000 https://diviengine.com/?p=5551#comment-224423 Hi, this way is no longer working. Is there a new method that works for this? How can I customize Woocommerce login and registration pages with Divi?

]]>
By: Divi Engine https://diviengine.com/how-to-create-a-custom-login-register-page-for-woocommerce-and-divi/#comment-84274 Mon, 14 Oct 2019 19:26:30 +0000 https://diviengine.com/?p=5551#comment-84274 In reply to James.

Looks like your code has an error. The function name and call is wrong. Try this making sure you use the same name. For example either use “Woo_register_fields” or “Wooregister_fields” as these are different

]]>
By: James https://diviengine.com/how-to-create-a-custom-login-register-page-for-woocommerce-and-divi/#comment-83967 Sat, 12 Oct 2019 20:18:51 +0000 https://diviengine.com/?p=5551#comment-83967 That’s great tutorial but if you can guide how to add fields in registration form manually? The fields are not adding in the registration form using a plugin. I am trying to add it manually using a code that is in this complete guide https://wpitech.com/add-woocommerce-registration-form-fields/. Is there any alternative to do this? It would be really helpful if you could help me to add fields in the registration form.

function Woo_register_fields() {?>

*
<input type="text" class="input-text" name="registration_name" value="” />

<?php
}
add_action( 'woocommerce_register_form_start', 'Wooregister_fields' );

]]>