国/都道府県のドロップダウンを検索します。私は国家の自動住人になっているが、都市はうまくいっていない。デフォルトでは国を取得することができます。自動値のドロップダウン国/州/都市woocommerce店頭
// State-Country additions
/**
* Code goes in functions.php or a custom plugin.
*/
add_filter('woocommerce_states', 'SA_woocommerce_states');
function SA_woocommerce_states($states) {
$states['ZA'] = array(
'EC' => __('Eastern Cape', 'woocommerce'),
);
return $states;
}
// Change "city" checkout billing and shipping fields to a dropdown
add_filter('woocommerce_checkout_fields', 'override_checkout_city_fields');
function override_checkout_city_fields($fields) {
// Define here in the array your desired cities (Here an example of cities)
$option_cities = array(
'' => __('Select your city'),
'a' => 'a',
);
$fields['billing']['billing_city']['type'] = 'select';
$fields['billing']['billing_city']['options'] = $option_cities;
$fields['shipping']['shipping_city']['type'] = 'select';
$fields['shipping']['shipping_city']['options'] = $option_cities;
return $fields;
}
これは完全な例ではありませんので、我々は再現できませんあなたの問題は簡単に。あなたのコードが何をし、何を期待しているのかを詳しく教えてください。 – JHBonarius
あなたが達成しようとしていることを詳しく教えてください。 –