katman1971 Posted June 23, 2010 Posted June 23, 2010 Hi I'm doing something wrong. I have a "contact us" button on my header but it's not working properly. This is the code: <td><a href="<?php echo tep_href_link(contact_us.php); ?><img src="images/store_header_07.jpg" alt="" width="176" height="49" border="0"></a></td> where am I going wrong? Thanks
vjboc Posted June 23, 2010 Posted June 23, 2010 Hi I'm doing something wrong. I have a "contact us" button on my header but it's not working properly. This is the code: <td><a href="<?php echo tep_href_link(contact_us.php); ?><img src="images/store_header_07.jpg" alt="" width="176" height="49" border="0"></a></td> where am I going wrong? Thanks Try adding ' before contact_us and ' after .php so it will look like this ('contact_us.php')
katman1971 Posted June 23, 2010 Author Posted June 23, 2010 Try adding ' before contact_us and ' after .php so it will look like this ('contact_us.php') It's still not working. This is what I have: <td><a href="<?php echo tep_href_link('contact_us.php'); ?><img src="images/store_header_07.jpg" alt="" width="176" height="49" border="0"></a></td> Thanks
germ Posted June 23, 2010 Posted June 23, 2010 <td><a href="<?php echo tep_href_link('contact_us.php'); ?>"><img src="images/store_header_07.jpg" alt="" width="176" height="49" border="0"></a></td> Missing the part in RED If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
Recommended Posts
Archived
This topic is now archived and is closed to further replies.