How to Add Extra Text at X-cart Product Name?
December 24th, 2011 — adminThere are several places need to modify to add extra text at X-cart Product Name.
1. For Products at X-cart Homepage and Detailed Category Page:
Go to /2-columns/customer/main/products_t.tpl, and change
{$current_category.category} {$product.product|amp}
to:
{if $main eq "catalog" && $current_category.category eq ""}
Cheap Eyeglasses {$product.product|amp}
{elseif $main eq "catalog" && $current_category.category ne ""}
{$current_category.category} {$product.product|amp}
{/if}
Continue reading “How to Add Extra Text at X-cart Product Name?”