VirtueMart Forum

VirtueMart 2 + 3 + 4 => Product creation => Topic started by: andrzejlv on December 08, 2013, 10:39:08 AM

Title: How to add url external link on name product in category?
Post by: andrzejlv on December 08, 2013, 10:39:08 AM
<h2><?php echo JHTML::link ($product->link$product->product_name);?></h2>
Title: Re: How to add url external link on name product in category?
Post by: GJC Web Design on December 08, 2013, 11:54:52 AM
depends what the lonk is

if it is always the same just hard code it in your template

<h2><a href="http://www.google.com" ><?php echo $product->product_name?></a></h2>

if it is always different can the product be used to vary it?

<h2><a href="http://www.my_link.com/blah/<?php echo $product->product_name?>.html" ><?php echo $product->product_name?></a></h2>

etc

Title: Re: How to add url external link on name product in category?
Post by: andrzejlv on December 08, 2013, 13:20:14 PM
Thanks, that's exactly !!!