v12/10B
Greetings,
Have added additional fields to the product page (html/product.php) per http://www.pricetapestry.com/node/4056
Now we would like to link the displayed category to their respective category.
Example:
We have Category: [category name]
We want to link [category name] to:
example.com/category/[category name]/
Code we have now is:
<?php if ($mainProduct["category"]): ?>
<?php print translate("Category"); ?>: <?php print $mainProduct["category"]; ?></p>
<?php endif; ?>
Thanks!
Hi,
Have a go with:
<?php if ($mainProduct["category"]): ?>
<?php print translate("Category"); ?>: <a href='<?php print $config_baseHREF."category/".tapestry_hyphenate($mainProduct["category"])."/"; ?>'><?php print $mainProduct["category"]; ?></a></p>
<?php endif; ?>
Cheers,
David.
--
PriceTapestry.com