Title: Customize Login
Last modified: March 25, 2018

---

# Customize Login

 *  Resolved [giangel84](https://wordpress.org/support/users/giangel84/)
 * (@giangel84)
 * [8 years ago](https://wordpress.org/support/topic/customize-login/)
 * Hi, I love your plugin.
    Is it possible to customize the login form during checkout
   page?
 * Action/Filter hooks let me append some code but the original input field and 
   the login button still on the page.
 * I have a custom shortcode which contain a custom login form, so I want entirely
   substitute the original with mine.
 * Just tried to override the checkout/form-login.php template with no success.
    -  This topic was modified 8 years ago by [giangel84](https://wordpress.org/support/users/giangel84/).

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [SilkyPress](https://wordpress.org/support/users/diana_burduja/)
 * (@diana_burduja)
 * [8 years ago](https://wordpress.org/support/topic/customize-login/#post-10112234)
 * Hi,
 * overwriting the checkout/form-login.php will not help. You can try to overwrite
   the global/form-login.php template. There you’ll find the form’s HTML.
 * Note that by overwriting the global/form-login.php, you’ll modify all the login
   forms on your website. If you want to modify only the checkout login form, then
   you need to overwrite the woocommerce_login_form() function from the /woocommerce/
   includes/wc-template-functions.php file.
 * To overwrite the woocommerce_login_form() function, simply add a function with
   the same name in the theme’s functions.php file, as follows:
 *     ```
       function woocommerce_login_form( $args = array() ) {
         echo '<form> your form </form>';
       }
       ```
   
 *  [vinay94](https://wordpress.org/support/users/vinay94/)
 * (@vinay94)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/customize-login/#post-10246342)
 * Can we add signup beside login form??

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Customize Login’ is closed to new replies.

 * ![](https://ps.w.org/wp-multi-step-checkout/assets/icon.svg?rev=1783907)
 * [Multi-Step Checkout for WooCommerce](https://wordpress.org/plugins/wp-multi-step-checkout/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-multi-step-checkout/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-multi-step-checkout/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-multi-step-checkout/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-multi-step-checkout/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-multi-step-checkout/reviews/)

## Tags

 * [form](https://wordpress.org/support/topic-tag/form/)
 * [login](https://wordpress.org/support/topic-tag/login/)

 * 2 replies
 * 3 participants
 * Last reply from: [vinay94](https://wordpress.org/support/users/vinay94/)
 * Last activity: [7 years, 11 months ago](https://wordpress.org/support/topic/customize-login/#post-10246342)
 * Status: resolved