webtintin Posted March 10, 2013 Share Posted March 10, 2013 HI, on Prestashop 1.4.8.3 to remove the link to the Product Description at STEP 01 you have to modify the file in your theme : shopping-cart-product-line.tpl The line to modify are the following : <td class="cart_description"> <h5><a class="product_link" href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}">{$product.name|escape:'htmlall':'UTF-8'}</a></h5> {if isset($product.attributes) && $product.attributes}<a class="product_descr" href="{$link->getProductLink($product.id_product, $product.link_rewrite, $product.category)|escape:'htmlall':'UTF-8'}">{$product.attributes|escape:'htmlall':'UTF-8'}</a>{/if} </td> in <td class="cart_description"> <h5><a class="product_link" >{$product.name|escape:'htmlall':'UTF-8'}</a></h5> {if isset($product.attributes) && $product.attributes}<a class="product_descr">{$product.attributes|escape:'htmlall':'UTF-8'}</a>{/if} </td> SOLVED 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now