I've looked through the admin for a switch to change the header tabs. Is this possible? If so, what are they called and where are they?
TIA
This is a discussion on Can you change the header tabs? within the Store Administration forums, part of the osCmax V2.5 Forums category; I've looked through the admin for a switch to change the header tabs. Is this possible? If so, what are ...
I've looked through the admin for a switch to change the header tabs. Is this possible? If so, what are they called and where are they?
TIA
If You want to change just name - catalog/includes/languages/your_language/core.php (HEADER_TITLE_MY_ACCOUNT, HEADER_TITLE_CHECKOUT, ... etc.)
If You want to add or remove - catalog/templates/your_template/main_page.tpl.php
PHP Code:<div id="header">
<ul>
<?php if ((tep_session_is_registered('customer_id')) && (!tep_session_is_registered('noaccount'))) { ?>
<li><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a></li>
<?php } ?>
<?php echo '<li><a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . HEADER_TITLE_CONTACT_US . '</a></li>' .
'<li><a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . HEADER_TITLE_MY_ACCOUNT . '</a></li>' .
'<li><a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">';
if (BASKET_CART =='cart') {
echo HEADER_TITLE_CART_CONTENTS; } else { echo HEADER_TITLE_BASKET_CONTENTS; } ?>
<?php echo '</a></li><li><a href="' . tep_href_link(FILENAME_WISHLIST, '', 'SSL') . '">' . HEADER_TITLE_WISHLIST . '</a></li>'; ?>
<?php
if ($cart->count_contents() > 0) {
echo '<li><a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . HEADER_TITLE_CHECKOUT . '</a></li>'; ?>
<?php } ?>
</ul>
</div>
Thank you for the quick response.
I was hoping there was a switch in the admin control panel to change the name so that I didn't have to keep up with changes for future updates
But I guess not.
Unfortunately since the site is multi-lingual we have to store the text in the language files. At least you don't have to make your own image tabs anymore now that it is done through css!
Regards.
pgmarshall
_______________________________
Bookmarks