Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding links in the Information Box


mtechama

Recommended Posts

Posted

I am about to open up a computer website and I want to know how you can links in the information box:

 

i.e.

Information:

Shipping & Returns

Support Forums - Opens an seperate Window for the forums

Downlowns - and how to create a page for that. and it will have links for website for Driver Downloads

Web Clients-

Web Hosting - Information about Web Hosting Plans

etc.

 

Where can I find that file, and do I do that?

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Posted

I have a test site that I can work with http://www.mtechama-test.com/catalog

 

ok in my information box I add a link call Support Forums.

with that link I want to link it at http://www.mtechama.com/support/forums/phpBB2/index.php as a seperate page (Window)

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Posted

includes/boxes/information.php

 

Replace:

<a href="' . tep_href_link(FILENAME_WHATEVERYOUPUTHERE) . '">' . BOX_INFORMATION_WHATEVERYOUPUTHERE. '</a>

 

with:

<a href="http://www.mtechama.com/support/forums/phpBB2/index.php" target="_blank">Support Forums</a>

Posted

how do I put it in the filenames.php?

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Posted
  define('FILENAME_SUPPORT_FORUMS', 'support/forums/phpBB2/index.php');

Wade Morris

Amarillo, Texas

 

Before you do any changes on your site you need to do BACKUP! BACKUP!

Posted
  define('FILENAME_SUPPORT_FORUMS', 'support/forums/phpBB2/index.php');

 

We are not calling FILENAME_SUPPORT_FORUMS in information.php anymore. So no need to define it in filenames.php. All you need to do is replace in information.php:

 

<a href="' . tep_href_link(FILENAME_SUPPORT_FORUMS) . '">' . BOX_INFORMATION_SUPPORT_FORUMS '</a>

 

with:

<a href="http://www.mtechama.com/support/forums/phpBB2/index.php" target="_blank">Support Forums</a>

Archived

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

×
×
  • Create New...