tztudio Posted June 1, 2016 Share Posted June 1, 2016 Hi, I would like to hide the product reference code (sku) when the customer is in the shopping cart. Please see attached pic. Can someone help me with this please? I am using Prestashop 1.6.1.4. : ) Link to comment Share on other sites More sharing options...
tztudio Posted June 20, 2016 Author Share Posted June 20, 2016 bump. Anyone have a solution? Link to comment Share on other sites More sharing options...
Simonas Invertus Posted June 22, 2016 Share Posted June 22, 2016 There are two ways to solve the problem: 1) Modify backend code to not print sku 2) Modify design to hide the sku. For this option we need a link to your shop. Link to comment Share on other sites More sharing options...
tztudio Posted August 18, 2016 Author Share Posted August 18, 2016 Hi, Which file do I need to edit? Thank you! : ) Link to comment Share on other sites More sharing options...
ewinch Posted September 27, 2017 Share Posted September 27, 2017 If all you want to do is hide it in the cart you code always add a simple line of CSS to global.css #cart_summary tbody td.cart_description small.cart_ref {display: none; visibility: hidden;} That way you don't need to bother trying to find the code to remove it. Link to comment Share on other sites More sharing options...
hbee Posted March 23, 2020 Share Posted March 23, 2020 Hello, I would like to replace the SKU number with the REFERENCE of the product. I have found in shopping-cart-product-line.tpl where to edit the text so that it shows "REF" instead of "SKU"... but what code do I use to show the Reference {reference}? {if $product.reference}<small class="cart_ref">{l s='REF'}{$smarty.capture.default}{$product.reference|escape:'html':'UTF-8'}</small>{/if} thank you 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