آموزش تنظیم پیش فرض شهر در صفحه پرداخت ووکامرس
شما میتوانید براحتی شهری را به عنوان پیش فرض ، هنگام ثبت نام کاربران برای آنها تنظیم نمایید.
برای تنظیم پیش فرض شهر در ووکامرس کافیست کد زیر را در functions.php قرار دهید
add_filter( 'woocommerce_checkout_fields', 'a4fran3_set_checkout_field_input_value_default' ); function a4fran3_set_checkout_field_input_value_default($fields) { $fields['billing']['billing_city']['default'] = 'London'; return $fields; }
در کد بالا شهر پیشفرض london انتخاب شده است
نتیجه کد بالا :
شما میتوانید برای بقیه فیلد ها هم پیش فرضی انتخاب نمایید. کافیست یکی از فیلد های زیر را در کد بالا بجای billing_city قرار دهید
billing_first_name
billing_last_name
billing_company
billing_address_1
billing_address_2
billing_city
billing_postcode
billing_country
billing_state
billing_email
billing_phone
shipping_first_name
shipping_last_name
shipping_company
shipping_address_1
shipping_address_2
shipping_city
shipping_postcode
shipping_country
shipping_state