Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove Manufactures & Boxes on Homepage


Guest

Recommended Posts

Two Questions:

 

1) Everything on the website is created by me...so how do I totally hide Manufacturers from my customer's view?

 

2) When the homepage is shown, in the far left and far right columns there are several boxes with titles such as "Notifications", "Languages" and "Tell a Friend". How do I choose which ones to show and which ones to remove. I don't want the Languages, because the only language I am using is English!

 

Thanks!

Link to comment
Share on other sites

Two Questions:

 

1) Everything on the website is created by me...so how do I totally hide Manufacturers from my customer's view?

 

2) When the homepage is shown, in the far left and far right columns there are several boxes with titles such as "Notifications", "Languages" and "Tell a Friend". How do I choose which ones to show and which ones to remove. I don't want the Languages, because the only language I am using is English!

 

Thanks!

 

on your admin go to file manager include/column_left.php (or column_right.php) and change this:

 

if ((USE_CACHE == 'true') && empty($SID)) {

echo tep_cache_manufacturers_box();

} else {

include(DIR_WS_BOXES . 'manufacturers.php');

}

 

to this:

 

if ((USE_CACHE == 'true') && empty($SID)) {

echo tep_cache_manufacturers_box();

} else {

//include(DIR_WS_BOXES . 'manufacturers.php');

}

 

this removes the manufacturers box you can do the same to other boxes

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...