hurab
Forum Replies Created
-
Avada yes this is my active theme too
No the ship to/account number is added defaulted because of the user backend detail but when i export the column is empty
https://paste.pics/5I799i think parent theme. i dont know how to figure out which theme am i using could you please guide
i actually from my plugin> woocommerce to theme>avada>woocommerce
woocommerce/templates/myaccount/form-login.php
<?php
/**
* Login Form
*
* This template can be overridden by copying it to yourtheme/woocommerce/myaccount/form-login.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @package WooCommerce/Templates
* @version 3.6.0
*/
if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly.
}
do_action( ‘woocommerce_before_customer_login_form’ ); ?><?php if ( ‘yes’ === get_option( ‘woocommerce_enable_myaccount_registration’ ) ) : ?>
<div class=”u-columns col2-set” id=”customer_login”>
<div class=”u-column1 col-1″>
<?php endif; ?>
<h2><?php esc_html_e( ‘Login’, ‘woocommerce’ ); ?></h2>
<form class=”woocommerce-form woocommerce-form-login login” method=”post”>
<?php do_action( ‘woocommerce_login_form_start’ ); ?>
<p class=”woocommerce-form-row woocommerce-form-row–wide form-row form-row-wide”>
<label for=”username”><?php esc_html_e( ‘Username or email address’, ‘woocommerce’ ); ?> <span class=”required”>*</span></label>
<input type=”text” class=”woocommerce-Input woocommerce-Input–text input-text” name=”username” id=”username” autocomplete=”username” value=”<?php echo ( ! empty( $_POST[‘username’] ) ) ? esc_attr( wp_unslash( $_POST[‘username’] ) ) : ”; ?>” /><?php // @codingStandardsIgnoreLine ?>
</p>
<p class=”woocommerce-form-row woocommerce-form-row–wide form-row form-row-wide”>
<label for=”password”><?php esc_html_e( ‘Password’, ‘woocommerce’ ); ?> <span class=”required”>*</span></label>
<input class=”woocommerce-Input woocommerce-Input–text input-text” type=”password” name=”password” id=”password” autocomplete=”current-password” />
</p><?php do_action( ‘woocommerce_login_form’ ); ?>
<p class=”form-row”>
<label class=”woocommerce-form__label woocommerce-form__label-for-checkbox woocommerce-form-login__rememberme”>
<input class=”woocommerce-form__input woocommerce-form__input-checkbox” name=”rememberme” type=”checkbox” id=”rememberme” value=”forever” /> <span><?php esc_html_e( ‘Remember me’, ‘woocommerce’ ); ?></span>
</label>
<?php wp_nonce_field( ‘woocommerce-login’, ‘woocommerce-login-nonce’ ); ?>
<button type=”submit” class=”woocommerce-button button woocommerce-form-login__submit” name=”login” value=”<?php esc_attr_e( ‘Log in’, ‘woocommerce’ ); ?>”><?php esc_html_e( ‘Log in’, ‘woocommerce’ ); ?></button>
</p>
<p class=”woocommerce-LostPassword lost_password”>
“><?php esc_html_e( ‘Lost your password?’, ‘woocommerce’ ); ?>
</p><?php do_action( ‘woocommerce_login_form_end’ ); ?>
</form>
<?php if ( ‘yes’ === get_option( ‘woocommerce_enable_myaccount_registration’ ) ) : ?>
</div>
<div class=”u-column2 col-2″>
<h2><?php esc_html_e( ‘Register’, ‘woocommerce’ ); ?></h2>
<form method=”post” class=”woocommerce-form woocommerce-form-register register” <?php do_action( ‘woocommerce_register_form_tag’ ); ?> >
<?php do_action( ‘woocommerce_register_form_start’ ); ?>
<?php if ( ‘no’ === get_option( ‘woocommerce_registration_generate_username’ ) ) : ?>
<p class=”woocommerce-form-row woocommerce-form-row–wide form-row form-row-wide”>
<label for=”reg_username”><?php esc_html_e( ‘account number’, ‘woocommerce’ ); ?> <span class=”required”>*</span></label>
<input type=”text” class=”woocommerce-Input woocommerce-Input–text input-text” name=”username” id=”reg_username” autocomplete=”username” value=”<?php echo ( ! empty( $_POST[‘username’] ) ) ? esc_attr( wp_unslash( $_POST[‘username’] ) ) : ”; ?>” /><?php // @codingStandardsIgnoreLine ?>
</p><?php endif; ?>
<p class=”woocommerce-form-row woocommerce-form-row–wide form-row form-row-wide”>
<label for=”reg_email”><?php esc_html_e( ‘Email address’, ‘woocommerce’ ); ?> <span class=”required”>*</span></label>
<input type=”email” class=”woocommerce-Input woocommerce-Input–text input-text” name=”email” id=”reg_email” autocomplete=”email” value=”<?php echo ( ! empty( $_POST[’email’] ) ) ? esc_attr( wp_unslash( $_POST[’email’] ) ) : ”; ?>” /><?php // @codingStandardsIgnoreLine ?>
</p><?php if ( ‘no’ === get_option( ‘woocommerce_registration_generate_password’ ) ) : ?>
<p class=”woocommerce-form-row woocommerce-form-row–wide form-row form-row-wide”>
<label for=”reg_password”><?php esc_html_e( ‘Password’, ‘woocommerce’ ); ?> <span class=”required”>*</span></label>
<input type=”password” class=”woocommerce-Input woocommerce-Input–text input-text” name=”password” id=”reg_password” autocomplete=”new-password” />
</p><?php else : ?>
<p><?php esc_html_e( ‘A password will be sent to your email address.’, ‘woocommerce’ ); ?></p>
<?php endif; ?>
<?php do_action( ‘woocommerce_register_form’ ); ?>
<p class=”woocommerce-FormRow form-row”>
<?php wp_nonce_field( ‘woocommerce-register’, ‘woocommerce-register-nonce’ ); ?>
<button type=”submit” class=”woocommerce-Button button” name=”register” value=”<?php esc_attr_e( ‘Register’, ‘woocommerce’ ); ?>”><?php esc_html_e( ‘Register’, ‘woocommerce’ ); ?></button>
</p><?php do_action( ‘woocommerce_register_form_end’ ); ?>
</form>
</div>
</div>
<?php endif; ?><?php do_action( ‘woocommerce_after_customer_login_form’ ); ?>
// Display a field in Registration / Edit account
add_action( ‘woocommerce_register_form_start’, ‘display_account_registration_field’ );
add_action( ‘woocommerce_edit_account_form_start’, ‘display_account_registration_field’ );
add_action( ‘woocommerce_checkout_details_form’, ‘display_account_registration_field’ );
function display_account_registration_field() {
$user = wp_get_current_user();
$value = isset($_POST[‘billing_account_number’]) ? esc_attr($_POST[‘billing_account_number’]) : $user->billing_account_number;
?>
<p class=”woocommerce-form-row woocommerce-form-row–wide form-row form-row-wide”>
<label for=”reg_billing_account_number”><?php _e( ‘Ship to/ Account number’, ‘woocommerce’ ); ?> <span class=”required”>*</span></label>
<input type=”text” maxlength=”6″ class=”input-text” name=”billing_account_number” id=”reg_billing_account_number” value=”<?php echo $value ?>” />
</p>
<div class=”clear”></div>
<?php
}// registration Field validation
add_filter( ‘woocommerce_registration_errors’, ‘account_registration_field_validation’, 10, 3 );
function account_registration_field_validation( $errors, $username, $email ) {
if ( isset( $_POST[‘billing_account_number’] ) && empty( $_POST[‘billing_account_number’] ) ) {
$errors->add( ‘billing_account_number_error’, __( ‘Error: account number is required!’, ‘woocommerce’ ) );
}
return $errors;
}
// login Field validation
add_filter( ‘woocommerce_login_errors’, ‘account_login_field_validation’, 10, 3 );
function account_login_field_validation( $errors, $username, $email ) {
if ( isset( $_POST[‘billing_account_number’] ) && empty( $_POST[‘billing_account_number’] ) ) {
$errors->add( ‘billing_account_number_error’, __( ‘Error: account number is required!’, ‘woocommerce’ ) );
}
return $errors;
}// Save registration Field value
add_action( ‘woocommerce_created_customer’, ‘save_account_registration_field’ );
function save_account_registration_field( $customer_id ) {
if ( isset( $_POST[‘billing_account_number’] ) ) {
update_user_meta( $customer_id, ‘billing_account_number’, sanitize_text_field( $_POST[‘billing_account_number’] ) );
}
}// Save Field value in Edit account
add_action( ‘woocommerce_save_account_details’, ‘save_my_account_billing_account_number’, 10, 1 );
function save_my_account_billing_account_number( $user_id ) {
if( isset( $_POST[‘billing_account_number’] ) )
update_user_meta( $user_id, ‘billing_account_number’, sanitize_text_field( $_POST[‘billing_account_number’] ) );
}// Save Field value in Checkout
add_action( ‘woocommerce_save_checkout_details’, ‘save_checkout_billing_account_number’, 10, 1 );
function save_checkout_billing_account_number( $user_id ) {
if( isset( $_POST[‘billing_account_number’] ) )
update_user_meta( $user_id, ‘billing_account_number’, sanitize_text_field( $_POST[‘billing_account_number’] ) );
}// Display field in admin user billing fields section
add_filter( ‘woocommerce_customer_meta_fields’, ‘admin_user_custom_billing_field’, 10, 1 );
function admin_user_custom_billing_field( $args ) {
$args[‘billing’][‘fields’][‘billing_account_number’] = array(
‘label’ => __( ‘Ship to/ Account number’, ‘woocommerce’ ),
‘description’ => ”,
‘custom_attributes’ => array(‘maxlength’ => 6),
);
return $args;
}this screen shot will show that i have a ship to/ account number in wordpress. i added this using a code. and it is appearing in export field too now when i download it it does not show the data inserted in it.
This is my question
okay so is there a way to create a field
https://paste.pics/99df3065e055391e5af523c26fd8b33c from here i am adding field
Not in the menu what i actually want is when i download the data of customer it should export the account number as well but only a blank column can be seen
hi nothing i havent use any plugin. from export order i clicked setup field>user>add field>account_number(the field which i added)>confirm
okay. actually i am very new to this so defo need your help
Hi this code which you have provided has changed my wordpress login too but i just want to change woocommerce registeration and login username
i want Account Number instead of Username could please do that for me
Thanks in advance