Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to move quick search box to above manufacturer box


gertrude

Recommended Posts

Posted

Can't seem to find the answer to this question. I'd like to move the quick search box up farther in the left column to above the manufactures box. How do I rearrange these boxes?

 

Thanks

 

Gert

Posted

Look for the include(); function calls in .../includes/column_left.php or .../includes/column_right.php and move them where you want them...

 

  if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_manufacturers_box();
 } else {
include(DIR_WS_BOXES . 'manufacturers.php');
 }

 //require(DIR_WS_BOXES . 'whats_new.php');
 require(DIR_WS_BOXES . 'search.php');

 

Change to:

  require(DIR_WS_BOXES . 'search.php');

 if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_manufacturers_box();
 } else {
include(DIR_WS_BOXES . 'manufacturers.php');
 }

 //require(DIR_WS_BOXES . 'whats_new.php');

Archived

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

×
×
  • Create New...