Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove Manufactures & Boxes on Homepage


Guest

Recommended Posts

Posted

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!

Posted
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

Posted

So then I just comment that line....Ok, that sounds pretty simple to me!

 

Thanks!

Archived

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

×
×
  • Create New...