Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How I remove the Language & Currency boxes?


Guest

Recommended Posts

Just comment them out in catalog/includes/configure.php

From this

include(DIR_WS_BOXES . 'languages.php');
   include(DIR_WS_BOXES . 'currencies.php');

To this

//include(DIR_WS_BOXES . 'languages.php');
   //include(DIR_WS_BOXES . 'currencies.php');

 

The_Bear

Link to comment
Share on other sites

I am interested in removing the language and currency boxes, but when I go to the /catalog/includes/configure.php file, I don't find the lines of code mentioned above by Bear. In fact, I don't find any lines of code that begin with include. Am I possibly looking at the wrong file?

Link to comment
Share on other sites

I disabled the language and currency boxes simply by commenting them out in the \catalog\includes\column_right.php file, like so:

 

/*

include(DIR_WS_BOXES . 'languages.php');

include(DIR_WS_BOXES . 'currencies.php');

*/

 

 

HTH,

 

TerryK

Terry Kluytmans

 

Contribs Installed: Purchase Without Account (PWA); Big Images, Product Availability, Description in Product Listing, Graphical Infobox, Header Tags Controller, Login Box, Option Type Feature, plus many layout changes & other mods of my own, like:

 

Add order total to checkout_shipment

Add order total to checkout_payment

Add radio buttons at checkout_shipping (for backorder options, etc.)

Duplicate Table Rate Shipping Module

Better Product Review Flow

 

* If at first you don't succeed, find out if there's a prize for the loser. *

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...