Hello all!
I’ve sucessfully hidden the price on my category page thanks to some CS-Cart genius’ here. I’m once again stuck with a similar issue. here’s what I’ve done…
Create a block → Add a product grid → Everything looks good except I would like the price to not show. I’ll attach a screenshot for reference.
Anyone have an idea which file turns off the price option? Version 3.05
Mucho thanks for any help!
Mike
find your grid tpl file on /skins/basic/customer/blocks/products
change Like this
show_old_price=false
show_price=false
show_clean_price=false
show_list_discount=false
show_discount_label=false
show_product_amount=false
Hello Mikew,
In order to hidden the price find this file:
[cscart_root_dir]/skins/[current_skin_name]/customer/blocks/list_templates/products_grid.tpl
replace this string
{include file="common_templates/product_data.tpl" product=$product}
by this one
{include file="common_templates/product_data.tpl" product=$product show_old_price=false show_price=false show_clean_price=false}
Sincerely yours,
CS-Market.
Thank you CS-Market! That did the trick!
Mike
[quote name='CS-Market' timestamp='1382686863' post='170359']
Hello Mikew,
In order to hidden the price find this file:
[cscart_root_dir]/skins/[current_skin_name]/customer/blocks/list_templates/products_grid.tpl
replace this string
{include file="common_templates/product_data.tpl" product=$product}
by this one
{include file="common_templates/product_data.tpl" product=$product show_old_price=false show_price=false show_clean_price=false}
Sincerely yours,
CS-Market.
[/quote]
Hello Mikew,
We are always at your service!
Best regards,
CS-Market.
Hi
Where are exactly these changes in 4.2.4 ?
Thanks
You can add the following code to the CSS section in the Theme editor
.ty-grid-list__price { display: none !important; }