Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do you make a link in an infobox?


kdogg

Recommended Posts

On the left side of my shopping cart, I have my info boxes and I need to set one of the options to be a link for a certain forum page.

 

How do I put a link in?

 

For example, I have:

 

Policies

Returns

Events <---- I want the Events to be a link to a certain forum page.

Contact Us

 

Thank you!

Link to comment
Share on other sites

Looks like you are trying to put that in includes/boxes/information.php.

Add this right above your contact us link

                                        '<a href="' . tep_href_link(FILENAME_EVENTS) . '">' . BOX_INFORMATION_EVENTS . '</a><br>' .

Make sure to add to includes/filenames.php

define('FILENAME_EVENTS', 'events.php');

Add to includes/languages/english.php

define('BOX_INFORMATION_EVENTS', 'Events');

And of course be sure to upload the page events.php

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...