dvwfoto Posted September 18, 2009 Posted September 18, 2009 5. … Remove the ??? box from the left / right side? Go to catalog/includes/column_left.php OR column_right.php and put // in front of the line with the box name that you want to remove. Need some help. I want to remove the bestsellers, reviews, currencies and notifications boxes from my website, can't seem to find a way to catalog/includes/column_right.php
♥14steve14 Posted September 18, 2009 Posted September 18, 2009 Do you mean that the file is not there. REMEMBER BACKUP, BACKUP AND BACKUP
cbay503 Posted September 30, 2009 Posted September 30, 2009 5. … Remove the ??? box from the left / right side?Go to catalog/includes/column_left.php OR column_right.php and put // in front of the line with the box name that you want to remove. Need some help. I want to remove the bestsellers, reviews, currencies and notifications boxes from my website, can't seem to find a way to catalog/includes/column_right.php hello, i need some help in fixing a template willing to pay . please contact me soon as you can. leo [email protected] :blush:
bmx0r Posted September 30, 2009 Posted September 30, 2009 can't find the file? catalog/includes/column_right.php if you just want to comment out the boxes: /* 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'); } if (isset($HTTP_GET_VARS['products_id'])) { if (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND) include(DIR_WS_BOXES . 'tell_a_friend.php'); } else { include(DIR_WS_BOXES . 'specials.php'); } require(DIR_WS_BOXES . 'reviews.php'); if (substr(basename($PHP_SELF), 0, 8) != 'checkout') { include(DIR_WS_BOXES . 'languages.php'); include(DIR_WS_BOXES . 'currencies.php'); } */
Recommended Posts
Archived
This topic is now archived and is closed to further replies.