Jump to content

hardcoremark

New Members
  • Posts

    1
  • Joined

  • Last visited

hardcoremark's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, Please can someone tell me what I need to change in this code to correct the layout of the attached page. Many thanks, Mark. <?php /** * Edit account form * * @author WooThemes * @package WooCommerce/Templates * @version 2.2.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <?php wc_print_notices(); ?> <?php do_action( 'woocommerce_edit_account_form_start' ); ?><?php _e( 'First name', 'woocommerce' ); ?> *<?php _e( 'Last name', 'woocommerce' ); ?> *<?php _e( 'Email address', 'woocommerce' ); ?> *<?php _e( 'Password Change', 'woocommerce' ); ?><?php _e( 'Current Password (leave blank to leave unchanged)', 'woocommerce' ); ?><?php _e( 'New Password (leave blank to leave unchanged)', 'woocommerce' ); ?><?php _e( 'Confirm New Password', 'woocommerce' ); ?><?php do_action( 'woocommerce_edit_account_form' ); ?><?php wp_nonce_field( 'save_account_details' ); ?><?php do_action( 'woocommerce_edit_account_form_end' ); ?> <?php/** * Edit account form * * @author WooThemes * @package WooCommerce/Templates * @version 2.2.0 */if ( ! defined( 'ABSPATH' ) ) { exit;}?><?php wc_print_notices(); ?><form action="" method="post"> <?php do_action( 'woocommerce_edit_account_form_start' ); ?> <p class="form-row form-row-first"> <label for="account_first_name"><?php _e( 'First name', 'woocommerce' ); ?> <span class="required">*</span></label> <input type="text" class="input-text" name="account_first_name" id="account_first_name" value="<?php echo esc_attr( $user->first_name ); ?>" /> </p> <p class="form-row form-row-last"> <label for="account_last_name"><?php _e( 'Last name', 'woocommerce' ); ?> <span class="required">*</span></label> <input type="text" class="input-text" name="account_last_name" id="account_last_name" value="<?php echo esc_attr( $user->last_name ); ?>" /> </p> <p class="form-row form-row-wide"> <label for="account_email"><?php _e( 'Email address', 'woocommerce' ); ?> <span class="required">*</span></label> <input type="email" class="input-text" name="account_email" id="account_email" value="<?php echo esc_attr( $user->user_email ); ?>" /> </p> <fieldset> <legend><?php _e( 'Password Change', 'woocommerce' ); ?></legend> <p class="form-row form-row-thirds"> <label for="password_current"><?php _e( 'Current Password (leave blank to leave unchanged)', 'woocommerce' ); ?></label> <input type="password" class="input-text" name="password_current" id="password_current" /> </p> <p class="form-row form-row-thirds"> <label for="password_1"><?php _e( 'New Password (leave blank to leave unchanged)', 'woocommerce' ); ?></label> <input type="password" class="input-text" name="password_1" id="password_1" /> </p> <p class="form-row form-row-thirds"> <label for="password_2"><?php _e( 'Confirm New Password', 'woocommerce' ); ?></label> <input type="password" class="input-text" name="password_2" id="password_2" /> </p> </fieldset> <div class="clear"></div> <?php do_action( 'woocommerce_edit_account_form' ); ?> <p> <?php wp_nonce_field( 'save_account_details' ); ?> <input type="submit" class="button" name="save_account_details" value="<?php _e( 'Save changes', 'woocommerce' ); ?>" /> <input type="hidden" name="action" value="save_account_details" /> </p> <?php do_action( 'woocommerce_edit_account_form_end' ); ?> </form>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.