禁用WooCommerce地址状态下拉菜单

时间:2018-01-17 作者:Byeongin Yoon

enter image description here

如您所见,WooCommerce的状态字段使用select字段。

但是,我只是想让用户直接进入状态!

我该怎么做?

2 个回复
SO网友:Dharmishtha Patel

将此添加到您的函数中。php

只需将此代码添加到函数文件中,WooCommerce现在将使用标准下拉列表。

add_action( \'wp_enqueue_scripts\', \'agentwp_dequeue_stylesandscripts\', 100 );
function agentwp_dequeue_stylesandscripts() {
if ( class_exists( \'woocommerce\' ) ) {
wp_dequeue_style( \'select2\' );
wp_deregister_style( \'select2\' );
wp_dequeue_script( \'select2\');
wp_deregister_script(\'select2\');
}
}

SO网友:Dharmishtha Patel
$(\'#billing_address_1\').removeAttr(\'disabled\');
结束

相关推荐