Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to add another Link in Information box


kd76

Recommended Posts

Hi,

 

i am very new to oscommerce and i hope i can get help here. I am trying to put another link in the information box. I tried but it didnt work. Thats how it looks like

 

Liefer- und

Versandkosten

BOX_INFORMATION_IMPRESSUM

Privatsphäre

und Datenschutz

Unsere AGB's

Kontakt

 

Thank you very much for every help.

 

Regards

Kemal

Link to comment
Share on other sites

Hi,

 

i am very new to oscommerce and i hope i can get help here. I am trying to put another link in the information box. I tried but it didnt work. Thats how it looks like

 

Liefer- und

Versandkosten

BOX_INFORMATION_IMPRESSUM

Privatsphäre

und Datenschutz

Unsere AGB's

Kontakt

 

Thank you very much for every help.

 

Regards

Kemal

add this to catalog/includes/languages/german.php do same for other languages you are using

define(BOX_INFORMATION_IMPRESSUM,'enter text here');

Link to comment
Share on other sites

add this to catalog/includes/languages/german.php do same for other languages you are using

define(BOX_INFORMATION_IMPRESSUM,'enter text here');

 

I added this to english.php and it didn't add an extra link to the information box.

 

If I'm not wrong, more than this is neede.

Link to comment
Share on other sites

I added this to english.php and it didn't add an extra link to the information box.

 

If I'm not wrong, more than this is neede.

Ok i thought you had progress more than that

we need to add in includes/filenames.php the name of the new file add before ?>

  define('FILENAME_IMPRESSUM', 'enter-filename-here.php');

 

change enter-filename-here.php to actuall filename your going to use

now in includes/boxes/information.php add after

										 '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' .

this

										 '<a href="' . tep_href_link(FILENAME_IMPRESSUMS) . '">' . BOX_INFORMATION_IMPRESSUMS . '</a><br>'

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...