Ranjan dwei Aidify
About
-
Profession
CALCINER GYPSUM
Skills
Tv, Process Improvements, Business Development
Posted Answers
Answer
1. Reduce your total carb intake · 2. Exercise regularly · 3. Drink water as your primary beverage · 4. Try to lose excess weight · 5. Quit smoking · 6. Reduce your.
Answer is posted for the following question.
Answer
The Fish Shack
Address: 87/105 Petrie Plaza, Canberra ACT 2601, Australia
Answer is posted for the following question.
Do you know best fish to eat in Canberra, Australia?
Answer
1
// Add the custom field favorite_color
2
add_action( 'woocommerce_edit_account_form', 'add_favorite_color_to_edit_account_form' );
3
function add_favorite_color_to_edit_account_form() {
4
$user = wp_get_current_user();
5
?>
6
<p class=woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide>
7
<label for=favorite_color>php _e( 'Favorite color', 'woocommerce' ); ?></label>
8
<input type=text class=woocommerce-Input woocommerce-Input--text input-text name=favorite_color id=favorite_color value=favorite_color ); ?> />
9
</p>
10
php
11
}
12
// Save the custom field 'favorite_color'
13
add_action( 'woocommerce_save_account_details', 'save_favorite_color_account_details', 12, 1 );
14
function save_favorite_color_account_details( $user_id ) {
15
// For Favorite color
16
if( isset( $_POST['favorite_color'] ) )
17
update_user_meta( $user_id, 'favorite_color', sanitize_text_field( $_POST['favorite_color'] ) );
18
// For Billing email (added related to your comment)
19
if( isset( $_POST['account_email'] ) )
20
update_user_meta( $user_id, 'billing_email', sanitize_text_field( $_POST['account_email'] ) );
21
}
Source: StackOverFlow
Answer is posted for the following question.
How to extend woocommerce user fields edit-account (PHP Scripting Language)