删除country field woocommerce

时间:2017-03-16 15:45:16

标签: woocommerce

是否有可能从checkoput页面中删除country字段并添加city下拉选择器字段。

我正在使用WC City Select插件,但它无效。

我该怎么办?

1 个答案:

答案 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&hellip;', 'woocommerce' ) .'</option>';
foreach ( $countries as $ckey => $cvalue ) {
                    $field .= '<option value="' . esc_attr( $ckey ) . '" '. selected( $value, $ckey, false ) . '>'. __( $cvalue, 'woocommerce' ) .'</option>';
                }

删除country

的代码

删除图片enter image description here

中的此代码

谢谢你的进步。