在登录/注册之前阻止显示载体

时间:2016-01-21 13:45:22

标签: prestashop prestashop-1.5

我在我的商店使用快速订购(opc)模式。问题是在客户创建帐户或保存地址之前有明显的交付选项。我想隐藏这一部分,因为这是通过付款完成的。

enter image description here

客户看到低运费并完成订单,然后价格变动并且生气。我想在cutromer注册acc或保存送货地址后显示送货选项。

1 个答案:

答案 0 :(得分:0)

您可以在文件$(document).ready(function(){中的/themes/[your_theme]/js/order-opc.js内添加此脚本:

$(document).ready(function() {
    if($('.address_address1').length == 0) {
        $('#opc_delivery_methods').hide();
    }
    else {
        $('#opc_delivery_methods').show();
    }
    [...]