Results 1 to 2 of 2

Changing Code in shopping_cart.php

This is a discussion on Changing Code in shopping_cart.php within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; I have created a new element in stylesheets A.BoxNav and although I was able to follow the directions for placing ...

      
  1. #1
    New Member
    Join Date
    Nov 2003
    Posts
    9
    Rep Power
    0


    Default Changing Code in shopping_cart.php

    I have created a new element in stylesheets A.BoxNav and although I was able to follow the directions for placing this code in the categories box, I cannot figure where to add it in any other box or what existing code to replace. I need to add it to shopping_cart.php to change my font text to white. Could someone take a look at this and tell me what to add where? Hopefully from this example I can take another look at the other boxes and follow. Thanks.


    <?php
    /*
    $Id: shopping_cart.php,v 1.18 2003/02/10 22:31:06 hpdl Exp $

    osCommerce, Open Source E-Commerce Solutions
    http://www.oscommerce.com

    Copyright (c) 2003 osCommerce

    Released under the GNU General Public License
    */
    ?>
    <!-- shopping_cart //-->
    <tr>
    <td>
    <?php
    $info_box_contents = array();
    $info_box_contents[] = array('text' => BOX_HEADING_SHOPPING_CART);

    new infoBoxHeading($info_box_contents, true, true, tep_href_link(FILENAME_SHOPPING_CART));

    $cart_contents_string = '';
    if ($cart->count_contents() > 0) {
    $cart_contents_string = '<table border="0" width="100%" cellspacing="0" cellpadding="0">';
    $products = $cart->get_products();
    for ($i=0, $n=sizeof($products); $i<$n; $i++) {
    $cart_contents_string .= '<tr><td align="right" valign="top" class="infoBoxContents">';

    if ((tep_session_is_registered('new_products_id_in_ca rt')) && ($new_products_id_in_cart == $products[$i]['id'])) {
    $cart_contents_string .= '<span class="newItemInCart">';
    } else {
    $cart_contents_string .= '<span class="infoBoxContents">';
    }

    $cart_contents_string .= $products[$i]['quantity'] . ' x </span></td><td valign="top" class="infoBoxContents"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products[$i]['id']) . '">';

    if ((tep_session_is_registered('new_products_id_in_ca rt')) && ($new_products_id_in_cart == $products[$i]['id'])) {
    $cart_contents_string .= '<span class="newItemInCart">';
    } else {
    $cart_contents_string .= '<span class="infoBoxContents">';
    }

    $cart_contents_string .= $products[$i]['name'] . '</span></a></td></tr>';

    if ((tep_session_is_registered('new_products_id_in_ca rt')) && ($new_products_id_in_cart == $products[$i]['id'])) {
    tep_session_unregister('new_products_id_in_cart');
    }
    }
    $cart_contents_string .= '</table>';
    } else {
    $cart_contents_string .= BOX_SHOPPING_CART_EMPTY;
    }

    $info_box_contents = array();
    $info_box_contents[] = array('text' => $cart_contents_string);

    if ($cart->count_contents() > 0) {
    $info_box_contents[] = array('text' => tep_draw_separator());
    $info_box_contents[] = array('align' => 'right',
    'text' => $currencies->format($cart->show_total()));
    }

    new infoBox($info_box_contents);
    ?>
    </td>
    </tr>
    <!-- shopping_cart_eof //-->

  2. #2
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,501
    Rep Power
    567


    Default

    Please stop posting entire files in your posts. We all have these files. Only post the section of code that you want to modify. We all have shopping_cart.php, so stop posting the entire file, it is unneccesary.

    How about trial and error. See all the class= tags? Change them one by one to your new class and see what happens.
    Michael Sasek
    osCMax Developer


    osCmax installation service - Have our professionals install osCmax on your server - same day service!
    osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0

    Stay Up To Date with everything osCMax:
    Free osCMax Newsletters - Security notices, New Releases, osCMax News
    osCMax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

Similar Threads

  1. Shopping_cart.php
    By dsimes in forum osCmax v2 Customization/Mods
    Replies: 1
    Last Post: 09-08-2005, 05:13 AM
  2. getting odd sql shopping_cart.php
    By thinkweb in forum osCmax v1.7 Discussion
    Replies: 0
    Last Post: 02-07-2005, 12:30 PM
  3. shopping_cart
    By philou83 in forum osCommerce 2.2 Modification Help
    Replies: 0
    Last Post: 11-17-2004, 06:44 AM
  4. Send email from shopping_cart.php
    By neil in forum osCmax v1.7 Discussion
    Replies: 4
    Last Post: 01-29-2004, 02:45 PM
  5. Modification to shopping_cart.php box needed...
    By atech in forum osCommerce 2.2 Modification Help
    Replies: 0
    Last Post: 09-03-2003, 06:25 PM

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
  •