Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to remove boxes on main page


s0und

Recommended Posts

I tried searching but ended up with nothing. I was wondering how i could remove the "languages" and "currency" boxes? Which file to configure to be more precise...

 

Any help would be appreciated.

Link to comment
Share on other sites

If you go in to includes/column_right.php and change,

 

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');

 

they will no longer be displayed. If you ever want to put them back just remove the two slashes '//' at the beginning of the lines.

 

If you want to remove them for good just remove,

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

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...