melanieh Posted October 1, 2010 Posted October 1, 2010 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.
multimixer Posted October 2, 2010 Posted October 2, 2010 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 My community profile | Template system for osCommerce - New: Responsive | Feedback channel
melanieh Posted October 4, 2010 Author Posted October 4, 2010 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!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.