是否有可能从checkoput页面中删除country字段并添加city下拉选择器字段。
我正在使用WC City Select插件,但它无效。
我该怎么办?
答案 0 :(得分:0)
删除文件插件woocommerce\includes\wc-template-functions.php
围绕第1836至1843行
$field = '<select name="' . esc_attr( $key ) . '" id="' . esc_attr( $args['id'] ) . '" ' . $args['autocomplete'] . ' class="country_to_state country_select ' . esc_attr( implode( ' ', $args['input_class'] ) ) .'" ' . implode( ' ', $custom_attributes ) . '>'
. '<option value="">'.__( 'Select a country…', 'woocommerce' ) .'</option>';
foreach ( $countries as $ckey => $cvalue ) {
$field .= '<option value="' . esc_attr( $ckey ) . '" '. selected( $value, $ckey, false ) . '>'. __( $cvalue, 'woocommerce' ) .'</option>';
}
删除country
。
谢谢你的进步。