Prestashop 强制客户前往 select 个国家/地区
Prestashop force customer to select country
我正在使用 Prestashop 1.7.1.1,我需要强制我的商店客户到 select 国家/地区。现在它总是预先 selected 作为我的商店默认国家(在我的例子中是立陶宛)。通过国际 > 本地化启用 "Set default country from browser language" 的选项是不可接受的,因为很多客户使用的浏览器语言是英语,但实际国家不是美国或英国。对我来说,最好将 --please chose-- 设置为预 selected 值并强制客户从列表中选择 select 一个。
如果您使用经典主题,您可以先启用 select themes\classic\templates_partials\form-fields.tpl 来禁用此行为。
另一种方法是使用 jQuery :
$("#id_country option:first").prop('disabled',false);
$("#id_country").val($("#id_country option:first").val());
我正在使用 Prestashop 1.7.1.1,我需要强制我的商店客户到 select 国家/地区。现在它总是预先 selected 作为我的商店默认国家(在我的例子中是立陶宛)。通过国际 > 本地化启用 "Set default country from browser language" 的选项是不可接受的,因为很多客户使用的浏览器语言是英语,但实际国家不是美国或英国。对我来说,最好将 --please chose-- 设置为预 selected 值并强制客户从列表中选择 select 一个。
如果您使用经典主题,您可以先启用 select themes\classic\templates_partials\form-fields.tpl 来禁用此行为。
另一种方法是使用 jQuery :
$("#id_country option:first").prop('disabled',false);
$("#id_country").val($("#id_country option:first").val());