Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove Language Option


cdanik

Recommended Posts

Posted

How do I remove the menu on the right side to select a language? I want my site in one lanugage only. I have already deleted the languages through the admin panel.

Posted

In catalog/includes/column_right.php find

  if (substr(basename($PHP_SELF), 0, 8) != 'checkout') {
include(DIR_WS_BOXES . 'languages.php');
include(DIR_WS_BOXES . 'currencies.php');
 }

Change to

  if (substr(basename($PHP_SELF), 0, 8) != 'checkout') {
//include(DIR_WS_BOXES . 'languages.php');
include(DIR_WS_BOXES . 'currencies.php');
 }

Archived

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

×
×
  • Create New...