我需要在WooCommerce运费计算器中设置默认国家(美国)。谁能给我建议我如何仅在WooCommerce运费计算器中而不是在结帐字段中设置默认国家(美国)。
jQuery('#calc_shipping_country option[value=US]').attr('selected','selected');
最佳答案
jQuery(function ($) {
var $country_input = $(this).find('#calc_shipping_country');
$country_input.val('IN');
});
试试这个代码
关于javascript - WooCommerce运费计算器查询,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60034441/