Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Change Choose Your Language to Customer Login Link


melanieh

Recommended Posts

Posted

I have a site: http://www.happyhousewares.com/index.php

 

Where I have changed the text in header.php for "Choose Your Language" to "Customer Login".

 

I would like to remove the flag beneath there and add a link to the customer login page. Can anyone direct me on doing those 2 things?

 

(I have read the How Do I article, which has helped me figure out a lot! I am new at this so I am stumped on how to get the link in there.)

 

Thanks for your time.

Posted

A link to the login file would look like this

<a href="<?php echo tep_href_link(FILENAME_LOGIN, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_LOGIN; ?></a>

 

This will display a link "log in", when you press on in, you go to the login page. You need to insert this into the html structure of file includes/header.php, just under the "customer login" text

 

Of course you need to change the css class to whatever you use in your template and make sure you have the text defined in your includes/languages/english.php file

Posted

A link to the login file would look like this

<a href="<?php echo tep_href_link(FILENAME_LOGIN, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_LOGIN; ?></a>

 

This will display a link "log in", when you press on in, you go to the login page. You need to insert this into the html structure of file includes/header.php, just under the "customer login" text

 

Of course you need to change the css class to whatever you use in your template and make sure you have the text defined in your includes/languages/english.php file

 

 

Thanks for the help. Greatly appreciated!

Archived

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

×
×
  • Create New...