我们正尝试使用docs.woothemes上记录的方法修改默认的Woocommerce Checkout Shipping City字段,但遇到了问题。
我们已将shipping_city
文字字段替换为select
下拉菜单。
在页面加载时,select
下拉菜单将替换为默认文本字段,如果可用,则会自动填充用户以前的投放目的地。
但是,如果重新加载/刷新页面,则文本字段将替换为新的和期望的select
下拉菜单。
我们已使用多个WordPress add_filter
函数过滤了该字段,并上下调整了priority
(-999到999)。
我们已在运输方式filter
Class
我们甚至已经禁用了浏览器自动格式,因为我们已经用完了其他想法......
当select
字段正常工作时...效果很好。运输成本得到更新,数据被返回,存储和通过电子邮件发送。
使用的filters
是:
add_filter( 'woocommerce_checkout_fields', array( $this, 'fn_name' ) );
add_filter( 'woocommerce_default_address_fields', array( $this, 'fn_name' ) );
和$field
数组看起来像:
$fields[ 'shipping' ][ 'shipping_city' ] = array(
'label' => __( 'Suburb/City', 'woocommerce' ),
'required' => FALSE,
'clear' => TRUE,
'type' => 'select',
'options' => $options_array,
'class' => array( 'update_totals_on_change' )
);
return $fields;
奇怪的是,当我们在同一个区域上运行两个过滤器时; sendond的标签被第一个覆盖......去图......我希望我知道Ajax ...我认为它是Ajax但是如果我知道AJAX我就知道它是否是Ajax ......
WordPress版本4.5.2&& WooCommerce版本2.5.5
答案 0 :(得分:2)
这应该与woocommerce_form_field_args
钩子一起使用,这样:
add_filter( 'woocommerce_form_field_args', 'custom_form_field_args', 10, 3 );
function custom_form_field_args( $args, $key, $value ) {
if ( $args['id'] == 'billing_city' ) {
$args = array(
'label' => __( 'Suburb/City', 'woocommerce' ),
'required' => FALSE,
'clear' => TRUE,
'type' => 'select',
'options' => $options_array,
'class' => array( 'update_totals_on_change' )
);
} // elseif … and go on
return $args;
};
这是默认的$args
参数值:
$defaults = array(
'type' => 'text',
'label' => '',
'description' => '',
'placeholder' => '',
'maxlength' => false,
'required' => false,
'autocomplete' => false,
'id' => $key,
'class' => array(),
'label_class' => array(),
'input_class' => array(),
'return' => false,
'options' => array(),
'custom_attributes' => array(),
'validate' => array(),
'default' => '',
);
参考文献:
答案 1 :(得分:0)
将此代码放入您的子主题function.php中,并应完成工作
$city_args = wp_parse_args( array(
'type' => 'select',
'options' => array(
'city1' => 'Amsterdam',
'city2' => 'Rotterdam',
'city3' => 'Den Haag',
),
), $fields['shipping']['shipping_city'] );
$fields['shipping']['shipping_city'] = $city_args;
$fields['billing']['billing_city'] = $city_args; // Also change for billing field
return $fields;
}
add_filter( 'woocommerce_checkout_fields', 'jeroen_sormani_change_city_to_dropdown' );