Guest Posted August 13, 2005 Share Posted August 13, 2005 I looked in the column right file and saw that the bestsellers box has more coding then the others, how do I make that box appear under the specials box? Link to comment Share on other sites More sharing options...
♥Vger Posted August 13, 2005 Share Posted August 13, 2005 Copy and paste the code below from its current location to below the code call for the specials box: if (isset($HTTP_GET_VARS['products_id'])) { if (tep_session_is_registered('customer_id')) { $check_query = tep_db_query("select count(*) as count from " . TABLE_CUSTOMERS_INFO . " where customers_info_id = '" . (int)$customer_id . "' and global_product_notifications = '1'"); $check = tep_db_fetch_array($check_query); if ($check['count'] > 0) { include(DIR_WS_BOXES . 'best_sellers.php'); } else { include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'best_sellers.php'); } Vger Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.