remove category link from product_info
product_info.php
I removed the link to a products category in the case that the product is a custom.
if(tep_is_custom($product_info['products_id'])){
echo tep_get_categories_name(tep_get_products_catagory_id($product_info['products_id'])) . '';
}
else{
echo '' . tep_get_categories_name(tep_get_products_catagory_id($product_info['products_id'])) . '';
}?>
I removed the link to a products category in the case that the product is a custom.
if(tep_is_custom($product_info['products_id'])){
echo tep_get_categories_name(tep_get_products_catagory_id($product_info['products_id'])) . '';
}
else{
echo '' . tep_get_categories_name(tep_get_products_catagory_id($product_info['products_id'])) . '';
}?>
0 Comments:
Post a Comment
<< Home