gertrude Posted February 13, 2008 Posted February 13, 2008 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
krnl Posted February 13, 2008 Posted February 13, 2008 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');
Recommended Posts
Archived
This topic is now archived and is closed to further replies.