Jump to content

BIG Problem: 'My Cart' Broken Link


Recommended Posts

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.

post-712201-0-38651500-1408056501_thumb.png

Link to comment
Share on other sites

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

×
×
  • Create New...