rafaelraveau Posted August 14, 2014 Share Posted August 14, 2014 Hello, Please help me with this issue! I currently have an eCommerce in http://juegosmesa.cl and from one day to another the link that is vinculated with my customers cart was dead, throwing a 404 error. The URL that is failing is: http://juegosmesa.cl/index.php?controller= Please see the image below to understand what I'm talking about. Link to comment Share on other sites More sharing options...
vekia Posted August 18, 2014 Share Posted August 18, 2014 hello please show contents of tpl file of module where the link to cart is defined problem is there Link to comment Share on other sites More sharing options...
rafaelraveau Posted August 18, 2014 Author Share Posted August 18, 2014 Hi Vekia, Thanks for your answer. The code is: <div class="minicart"> <ul id="header_nav"> {if !$PS_CATALOG_MODE} <li id="shopping_cart"> <a href="{$link->getPageLink($order_process, true)}"> <span><img src="{$img_dir }cart_icon.png" alt="image"/></span> <span class="item ajax_cart_quantity{if $cart_qties == 0} hidden{/if}">{$cart_qties}</span> <span class="ajax_cart_product_txt{if $cart_qties != 1} hidden{/if}">{l s='ITEM' mod='blockuserinfo'}/</span> <span class="ajax_cart_product_txt_s{if $cart_qties < 2} hidden{/if}">{l s='ITEMS' mod='blockuserinfo'}/</span> <span class="ajax_cart_total{if $cart_qties == 0} hidden{/if} price"><b> {if $cart_qties > 0} {if $priceDisplay == 1} {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant} {convertPrice price=$cart->getOrderTotal(false, $blockuser_cart_flag)} {else} {assign var='blockuser_cart_flag' value='Cart::BOTH_WITHOUT_SHIPPING'|constant} {convertPrice price=$cart->getOrderTotal(true, $blockuser_cart_flag)} {/if} {/if}</b> </span> <span class="ajax_cart_no_product{if $cart_qties > 0} hidden{/if}">{l s='(0)' mod='blockuserinfo'}</span> </a> </li> {/if} </ul> Link to comment Share on other sites More sharing options...
Recommended Posts