This is a discussion on Right Column within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; My includes/column_right.php file looks like this: <?php /* $Id: column_right.php,v 1.17 2003/06/09 22:06:41 hpdl Exp $ osCommerce, Open Source E-Commerce ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| My includes/column_right.php file looks like this: <?php /* $Id: column_right.php,v 1.17 2003/06/09 22:06:41 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ require(DIR_WS_BOXES . 'shopping_cart.php'); if (isset($HTTP_GET_VARS['products_id'])) include(DIR_WS_BOXES . 'manufacturer_info.php'); if (tep_session_is_registered('customer_id')) include(DIR_WS_BOXES . 'order_history.php'); 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, include(DIR_WS_BOXES . 'languages.php'); include(DIR_WS_BOXES . 'currencies.php'); } ?> I want to remove everything except have shopping cart, specials & reviews no matter where they are in the shopping cart. I tried commenting out everything except <?php require(DIR_WS_BOXES . 'shopping_cart.php'); include(DIR_WS_BOXES . 'specials.php'); require(DIR_WS_BOXES . 'reviews.php'); ?> and I tried changing the include for specials to require, but specials does not appear. |
| Sponsored Links | ||
| ||
| |
|
#2
| |||
| |||
| Quote:
If yes, do your shopping cart and reviews boxes display? Did your specials box appear before this change? |
|
#3
| |||
| |||
| Yes the simple things. I didn't have any specials defined in the admin area. I assumed since the reviews showed up whether anything was assigned or not that the specials would do the same thing. Thanks for your help. |
| Sponsored Links | ||
| ||
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Add Column Info Box | Cisco | osCMax v2 Customization/Mods | 2 | 07-12-2006 04:06 AM |
| Add image to column | gamefreak7 | osCMax v2 Customization/Mods | 1 | 07-14-2005 10:54 PM |
| Move all in rh column to left and remove RH column | jloyzaga | osCMax v1.7 Discussion | 0 | 03-24-2004 04:24 PM |
| removing right column?? | amilo | osCommerce 2.2 Modification Help | 1 | 12-26-2003 01:08 PM |
| Background in right column | EPierre | osCommerce 2.2 Modification Help | 1 | 11-08-2002 07:27 AM |