WooCommerce运费计算器查询

问题描述 投票:1回答:1

我需要在WooCommerce运费计算器中设置默认国家(美国)。有人可以建议我如何仅在WooCommerce运费计算器中而不在结帐字段中设置默认国家(美国)。

jQuery('#calc_shipping_country option[value=US]').attr('selected','selected'); 
javascript wordpress woocommerce
1个回答
0
投票
jQuery(function ($) {

    var $country_input = $(this).find('#calc_shipping_country');
    $country_input.val('IN');

});

尝试此代码

© www.soinside.com 2019 - 2024. All rights reserved.