[WORDPRESS] Woocommerce 등록에 사용자 역할을 선택 작동이 중지
WORDPRESSWoocommerce 등록에 사용자 역할을 선택 작동이 중지
해결법
-
1.나는 이전 코드를 폐기하기로 결정하고 다음 코드로 대체 그것은 작동합니다.
나는 이전 코드를 폐기하기로 결정하고 다음 코드로 대체 그것은 작동합니다.
/* To add WooCommerce registration form custom fields. */ function WC_extra_registation_fields() {?> <p class="form-row form-row-first"> <label for="reg_role"><?php _e( 'Dealer or Distributor', 'woocommerce' ); ?></label> <select class="input-text" name="role" id="reg_role"> <option <?php if ( ! empty( $_POST['role'] ) && $_POST['role'] == 'dealer') esc_attr_e( 'selected' ); ?> value="dealer">Dealer</option> <option <?php if ( ! empty( $_POST['role'] ) && $_POST['role'] == 'distributor') esc_attr_e( 'selected' ); ?> value="distributor">Distributor</option> </select> </p> <?php } add_action( 'woocommerce_register_form', 'WC_extra_registation_fields'); /* To validate WooCommerce registration form custom fields. */ function WC_validate_reg_form_fields($username, $email, $validation_errors) { if (isset($_POST['role']) && empty($_POST['role']) ) { $validation_errors->add('role_error', __('Dealer or Distributor is required!', 'woocommerce')); } return $validation_errors; } add_action('woocommerce_register_post', 'WC_validate_reg_form_fields', 10, 3); /* To save WooCommerce registration form custom fields. */ function WC_save_registration_form_fields($customer_id) { //Role field if (isset($_POST['role'])) { update_user_meta($customer_id, 'role', sanitize_text_field($_POST['role'])); } } add_action('woocommerce_created_customer', 'WC_save_registration_form_fields');
from https://stackoverflow.com/questions/44607961/user-role-select-on-woocommerce-registration-stopped-working by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] 게시물 워드 프레스의 특정 날짜 사이에 발행하기 (0) | 2020.11.17 |
---|---|
[WORDPRESS] PHP의 구문 분석 및 프로세스 HTML : 스크레이퍼로 워드 프레스 - 플러그인 - 메타 데이터를 가져 오는 (0) | 2020.11.17 |
[WORDPRESS] Woocommerce의 IP 주소 (인 GeoLocation)를 기반으로 장바구니 버튼으로 변경 추가 (0) | 2020.11.17 |
[WORDPRESS] 체크 아웃 woocommerce에서 짧은 설명 솔루션은 나를 위해 작동하지 않는 워드 프레스 (0) | 2020.11.17 |
[WORDPRESS] 스크립트를 통해 포스트 끈을 워드 프레스? (0) | 2020.11.17 |