Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

replacing application top items?


ingenue

Recommended Posts

in catalog/application_top

The template i'm using has a drop down menu for currencies, a language image and of course shopping cart.

 

The text in the currencies with drop down menu i'd like to change to a search bar instead.

 

How do i chnage the text shown to do that?

 

// currency

if (!tep_session_is_registered('currency') || isset($HTTP_GET_VARS['currency']) || ( (USE_DEFAULT_LANGUAGE_CURRENCY == 'true') && (LANGUAGE_CURRENCY != $currency) ) ) {

if (!tep_session_is_registered('currency')) tep_session_register('currency');

 

if (isset($HTTP_GET_VARS['currency']) && $currencies->is_set($HTTP_GET_VARS['currency'])) {

$currency = $HTTP_GET_VARS['currency'];

} else {

$currency = (USE_DEFAULT_LANGUAGE_CURRENCY == 'true') ? LANGUAGE_CURRENCY : DEFAULT_CURRENCY;

}

}

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...