Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

how do i put valid links in index homepage


mazoo

Recommended Posts

Posted

ive put some links near the bottom of the homepage that links to review and wall of fame.

 

http://www.mazoo.co.uk/art/index.php

 

but the only problem is that i have created them in html not php so they dont keep the session id's so if a customer adds to cart then navigates to one of these pages they will loose there cart contents.

 

i have created php link in my header that links to wall of fame and works but using the same code in the index.php does not seem to work.

 

any one have any ideas how to do this?

 

Kathryn

Posted

The general form is

  <td align="center" class="main">
  <?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT, 'cPath=10', 'NONSSL') . '">' . "Some Category" . '</a>'; ?></td>
 </tr>

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

All of My Addons

Get the latest versions of my addons

Recommended SEO Addons

Posted

Hi Jack, thanks for the reply.

i used this

 

<p><a href="<?php echo tep_href_link(FILENAME_REVIEWS) ?>">Reviews</a></p>

 

which works well and creates the link http://www.mazoo.co.uk/art/reviews.php

 

The main issue (I think) was that i put the code in define text main in the english/index.php file not in the cataglog/index.php file.

 

ill make a note of the code you gave above for linking to categories, how would you create a link to a specific product? also i am using seo url's dont know if it makes a differnce or not

 

Regards

 

Kathryn

Posted

You can place the link in either but the code is a little different

 <td><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=123', 'NONSSL') . '"> Product name</a></td>

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

All of My Addons

Get the latest versions of my addons

Recommended SEO Addons

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...