Results 1 to 10 of 10
  1. #1
    Join Date
    Oct 2005
    Posts
    57
    Plugin Contributions
    0

    Default Show BOTH Net and Discount Prices??

    Like others, I have a "VIP" membership program in our store. I want to use the Dual Pricing / Wholesale module (i would interchange "wholesale" with "VIP")

    BUT...

    I want to show both prices to everyone at all times. This will entice users to join the membership "VIP" program. (I understand there is a membership module that allows automatic purchase and addition to the membership, but i don't want to make it too complex yet.. one step at a time.)

    I did install the MSRP module, thinking this would work. It looks great, even shows a % difference in price, but the MSRP pricing isn't used for pricing, only Net (I.e. ZC still only uses one price. Here's example of MSRP module product.

    http://www.sdri.net/shop/index.php?m...&products_id=2

    So, i want the functionality of the Discount Group pricing, but the Display capability of the MSRP.

    This is an example http://www.roadrunnersports.com/rrs/products/ASC1272/

    Ideally, I would like a "MSRP - List - VIP" module that shows all 3 prices (with % differences like the MSRP) but regular customers get List price and VIP get the VIP (Wholesale) pricing. Right now, we're simply putting the MSRP pricing within the product description.

    I'm willing to pay for it, if it's not already done.

    Thanks,
    Blake

  2. #2
    Join Date
    Oct 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Show BOTH Net and Discount Prices??

    No one? This has been asked for by numeruous members over the months/years.

  3. #3
    Join Date
    Dec 2007
    Posts
    23
    Plugin Contributions
    0

    Default Re: Show BOTH Net and Discount Prices??

    It would be great if someone could have an answer for this.

  4. #4
    Join Date
    Jun 2007
    Location
    Michigan
    Posts
    187
    Plugin Contributions
    0

    Default Re: Show BOTH Net and Discount Prices??

    Gurus??? please help, We need an answer to this or at least point us in the right direction. I'm in need of this BADLY

    Thanks

    Quote Originally Posted by reden View Post
    It would be great if someone could have an answer for this.

  5. #5
    Join Date
    Oct 2007
    Posts
    105
    Plugin Contributions
    0

    Default Re: Show BOTH Net and Discount Prices??

    Quote Originally Posted by blakemiller View Post
    Like others, I have a "VIP" membership program in our store. I want to use the Dual Pricing / Wholesale module (i would interchange "wholesale" with "VIP")

    BUT...

    I want to show both prices to everyone at all times. This will entice users to join the membership "VIP" program. (I understand there is a membership module that allows automatic purchase and addition to the membership, but i don't want to make it too complex yet.. one step at a time.)
    Has anyone come up with a way to show both prices? I have this exact same situation and I feel like I'm so close and yet so far. The dual pricing displays is perfectly but only if they are assigned to the "group".

    Nancy

  6. #6
    Join Date
    Oct 2007
    Posts
    105
    Plugin Contributions
    0

    Default Re: Show BOTH Net and Discount Prices??

    Quote Originally Posted by ladyink View Post
    Has anyone come up with a way to show both prices? I have this exact same situation and I feel like I'm so close and yet so far. The dual pricing displays is perfectly but only if they are assigned to the "group".

    Nancy
    I really am so close- at least I'd like to think I am. Here is what I've got and I think that my thought process is right- I just can't quite get it.

    On my tpl_product_info_display.php I've got which is from dual pricing:

    <!--bof Product Price block -->
    <h2 id="retailwhole" class="productGeneral">

    <?php
    // base price

    //***********************************************************************
    //***DISPLAY NET RETAIL PRICE IF WHOLESALE CUSTOMER IS LOGGED ON
    //***********************************************************************
    if ($_SESSION['customer_whole'] && $_SESSION['customer_whole'] != '0' ) {
    echo '<span id="retailwhole">' . ' Retail Price: '.$one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == '1') ? TEXT_BASE_PRICE : '') . zen_get_products_display_retail_net_price((int)$_GET['products_id']).'</span><br /> ';
    }
    //***********************************************************************
    //***END DISPLAY NET RETAIL PRICE IF WHOLESALE CUSTOMER IS LOGGED ON
    //***********************************************************************

    if ($show_onetime_charges_description == 'true') {
    $one_time = ' <span> Your Price: ' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
    } else {
    $one_time = '';
    }
    //******************************************************************************** *
    //***Properly display price labeling when set to Whole sale and when not
    //******************************************************************************** *
    if ($_SESSION['customer_whole'] && $_SESSION['customer_whole'] != '0' )
    {
    echo '<span id="whole">Member Price: ';
    } else {
    echo '<span id="retail">Retail Price: ';
    }
    echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
    echo '</span>';
    //******************************************************************************** *
    //***END Properly display price labeling when set to Whole sale and when not
    //******************************************************************************** *

    ?></h2>
    <!--eof Product Price block -->

    Right under <h2 id="retailwhole" class="productGeneral"> at the top of that code, I put:

    <?php
    echo '<span id="retailwhole">' . ' Retail Price: '.$one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == '1') ? TEXT_BASE_PRICE : '') . zen_get_products_display_retail_net_price((int)$_GET['products_id']).'</span><br /> ';
    ?>

    Which only managed to duplicate the retail price. Since I'm not that great at php- yet, I understand what needs to happen- just not quite sure how to write it. I'm entering a Wholesale price on the product page in the admin- there has got to be a way to display that

    I'm willing to try any suggestions~

    Nancy

  7. #7
    Join Date
    Feb 2009
    Location
    Woodstock, Ontario, Canada
    Posts
    19
    Plugin Contributions
    0

    Default Re: Show BOTH Net and Discount Prices??

    I believe that this is a feature that almost everyone using wholesale pricing would like to see.

    There must be someone out there who can make it happen.

    Perhaps that with the advent of 2.0 noone wants to waste time coding something that will obsolete in a few months.

    However, I think many of us will end up still using the old version for quite some time untill we can make time to get the new store operational.

    Thanks everyone for all your hard work. It is truly an unselfish act and you are to be commended.

    Thanks so much.

    www.NexPump.ca

  8. #8
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Show BOTH Net and Discount Prices??

    To do this you are going to have to edit functions_prices.php. In particular you need to look at :

    zen_get_products_display_price($products_id)

    Which is a function that creates the price display. The edit isn't all that tricky. What is a bit more complex is working out the logic of how specials and sale discounts are applied to the various prices. Also, the way the mod alterations are structured, which is perfectly logical, makes it more difficult to output both prices at once.

    So, really, the question is what additional price are you trying to display? With or without any discounts? Or do you want to display the whole thing twice including discounts to both prices?

  9. #9
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Show BOTH Net and Discount Prices??


  10. #10
    Join Date
    Apr 2007
    Posts
    12
    Plugin Contributions
    0

    Default Re: Show BOTH Net and Discount Prices??

    Hi, I thought I would bump this thread as it's been inactive for a while. Has anyone come up with a solution for this?

    PRETTY PLEASE??????

    I have the same situation where I would like to display both the retail and Advantage Customer prices. The retail would be the default price, but the AC price would also be displayed as an incentive to join the program and receive the discounted price.

    It seems like quite a few folks here are saying that they would appreciate having this option, and would find it to be very useful. Is anyone working on this, or has there been a modification posted here that I'm just not finding? I've done a pretty exhaustive search so far and have yet to come up with a step-by-step.

    I have the Dual Pricing 1.6 installed on a 1.3.8 store.

    Thanks in advance!

 

 

Similar Threads

  1. Salemaker - how to show discount prices and savings in cart and checkout
    By kwright in forum Setting Up Specials and SaleMaker
    Replies: 0
    Last Post: 1 Dec 2010, 09:24 PM
  2. Is is possible to show BOTH net and gross prices on the product page?
    By Spinner in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 2
    Last Post: 1 Sep 2009, 12:37 PM
  3. Show BOTH Net and Discount/Wholesale Prices??
    By blakemiller in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 7 Apr 2008, 01:10 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