osCmax v2.5 User Manual
Results 1 to 3 of 3

Right Column

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 ...

      
  1. #1
    New Member
    Join Date
    Mar 2005
    Posts
    21
    Rep Power
    0


    Default Right Column

    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, != 'checkout') {
    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.

  2. #2
    Member
    Join Date
    Dec 2004
    Posts
    75
    Rep Power
    8


    Default Re: Right Column

    Quote Originally Posted by seaserver
    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, != 'checkout') {
    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.
    Simple things first (believe me, I've pulled my hair out over simpler) - you DO have some active specials defined in admin?

    If yes, do your shopping cart and reviews boxes display? Did your specials box appear before this change?
    Brian Neuman
    Webmaster
    www.honeybeadjewelry.com

  3. #3
    New Member
    Join Date
    Mar 2005
    Posts
    21
    Rep Power
    0


    Default RE: Re: Right Column

    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.

Similar Threads

  1. Add Column Info Box
    By Cisco in forum osCmax v2 Customization/Mods
    Replies: 2
    Last Post: 07-12-2006, 03:06 AM
  2. Add image to column
    By gamefreak7 in forum osCmax v2 Customization/Mods
    Replies: 1
    Last Post: 07-14-2005, 09:54 PM
  3. Move all in rh column to left and remove RH column
    By jloyzaga in forum osCmax v1.7 Discussion
    Replies: 0
    Last Post: 03-24-2004, 03:24 PM
  4. removing right column??
    By amilo in forum osCommerce 2.2 Modification Help
    Replies: 1
    Last Post: 12-26-2003, 12:08 PM
  5. Background in right column
    By EPierre in forum osCommerce 2.2 Modification Help
    Replies: 1
    Last Post: 11-08-2002, 06:27 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •