|
|
How can I hide product code from the front end?
Posted 14 June 2012 - 04:01 PM #1
How do I hide product code from the front end store?
Posted 15 June 2012 - 11:36 AM #2
Please follow skins/YOUR_SKIN/customer/views/products/view.tpl
In view.tpl file change
show_sku=trueto
show_sku=false
Best regards, Alt-team
Product designer software | CS-Cart development
Posted 19 June 2012 - 09:53 PM #4
I renamed the original view.tpl to view_original.tpl.
I changed to show_sku=false. Then uploaded the view.tpl back. But Product codes was not removed.
Please check my site www.lootbids.com
Posted 28 June 2012 - 01:36 AM #5
meseta, on 19 June 2012 - 09:53 PM, said:
I renamed the original view.tpl to view_original.tpl.
I changed to show_sku=false. Then uploaded the view.tpl back. But Product codes was not removed.
Please check my site www.lootbids.com
Hi,
Did you clear your cache?
i.e www.lootbids.com/youradminpagename.php?cc
Posted 28 June 2012 - 02:40 PM #6
Worked for me on our version, and yes, I needed to clear the cache before it appeared correctly in my browser.
Thanks again!
Posted 29 June 2012 - 09:15 AM #7
Posted 04 July 2012 - 12:13 AM #8
apple, on 28 June 2012 - 01:36 AM, said:
Did you clear your cache?
i.e www.lootbids.com/youradminpagename.php?cc
Posted 04 July 2012 - 05:16 AM #9
meseta, on 04 July 2012 - 12:13 AM, said:
Hello meseta!
As apple indicated you need to add ?сс to your admin page url, it will clear cache, pay attention to apple's example www.lootbids.com/youradminpagename.php?cc
Best regards, Alt-team
Product designer software | CS-Cart development
Posted 04 July 2012 - 12:55 PM #10
Posted 14 November 2012 - 10:13 AM #11
This works for the basic skin that comes with CS-Cart 3 and should work for all skins that follow this setup.
This involves editing a stylesheet instead of php code or config files
Edit the file located at skins/basic/customer/base.css
Find the class labelled .sku
It should say something like:
.sku {
padding: 0;
font-size: 77%;
}
Add an extra style so it reads like this:
.sku {
padding: 0;
font-size: 77%;
visibility:hidden;
}


