Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default In the shopping cart, how do I change $0.00 to Special Price

    The site url is
    http://www.bahamaschequeservices.com/orders

    I am trying to customize zen cart to accept orders submitted by customers of the business who are billed for orders placed online.

    Right now the items in the cart are set as free. Prices are hidden. Shipping is free. But the shopping cart shows the price, sub-total, total price as $0.00

    How can I substitute the $0.00 for something like Special Price or eliminate the Price altogether in the shopping cart?

    Have combed through forum and have not yet found this addressed.

    Thanks,

  2. #2
    Join Date
    Sep 2006
    Posts
    542
    Plugin Contributions
    0

    Default Re: In the shopping cart, how do I change $0.00 to Special Price

    Make a backup copy so you can restore original code if and when you want to add prices.

    You are also bound to get flack from some of the forum members as some don't think hacking into zen cart code is the right thing to do. I look at it as Zen Cart is the basic template but not all of us have the same uses and it is open source and flexible and changeable for your uses.

    Open includes>templates>your template>templates>tpl_shopping_cart.php.

    You will need to remove code from 4 lines.
    Find at around line 57 and remove: this removes Unit from the heading

    <?php echo TABLE_HEADING_PRICE; ?>

    next line, 58 remove this code, it will remove the words Total.

    <?php echo TABLE_HEADING_TOTAL; ?>

    Then drop down to lines 107 and 108 and remove from line 107

    <?php echo $product['productsPriceEach']; ?>

    remove from line 108
    <?php echo $product['productsPrice']; ?>

    You can change any of the removable code with wording of your own, such as Gratis or Free an example would be line 107 to 108

    <td class="cartUnitDisplay"></td>
    <td class="cartTotalDisplay">Free</td>

  3. #3
    Join Date
    Jul 2008
    Posts
    18
    Plugin Contributions
    0

    Default Re: In the shopping cart, how do I change $0.00 to Special Price

    Thanks, it worked. Would not have known where to look but have managed to customize the cart according to my clients specs.
    Thanks again!

 

 

Similar Threads

  1. Change how percent is worked on on special product price?
    By paddy_uk2007 in forum General Questions
    Replies: 3
    Last Post: 30 Nov 2011, 06:54 PM
  2. How to change the Shopping Cart Colour?
    By integrity_designs in forum General Questions
    Replies: 4
    Last Post: 23 Mar 2011, 05:18 AM
  3. Show special price info in shopping cart (instead only the final price)?
    By Cindy2010 in forum Setting Up Specials and SaleMaker
    Replies: 1
    Last Post: 19 Jan 2011, 02:06 AM
  4. Special price isn't applied to shopping cart.
    By Hong in forum General Questions
    Replies: 4
    Last Post: 11 May 2010, 06:57 PM
  5. Why is my special price not being shown in the shopping cart?
    By abcdabcd in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 30 Jun 2007, 09:54 PM

Posting Permissions

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