admin
Guest
|
 |
« on: February 13, 2008, 11:25: PM » |
|
*STS Tip* How to create category/product links in your STS Template:
STS Link to a category:
CODE
<a href="<?php echo tep_href_link('index.php', 'cPath=21&', 'NONSSL'); ?>">Category Name Here[/url] Replace the number 21 for the category ID that you are linking to as well as replace NONSSL with SSL if your store has a securtiy certificate.
STS Link to a product:
CODE <a href="<?php echo tep_href_link('product_info.php', 'products_id=53&', 'NONSSL'); ?>">Product Name Here[/url] Replace the number 53 for the product ID that you are linking to as well as replace NONSSL with SSL if your store has a securtiy certificate.
Hope this helped you out,
|