국가/지역/도시의 드롭 다운을 찾고 있습니다. 인구가 많은 국가는 자동으로 인구가 늘지만 도시는 잘 통과하지 못합니다. 기본적으로 국가를 얻을 수 있습니다.자동 값 드롭 다운 국가/주/도시 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
달성하려는 내용을 자세히 기술하십시오. –