Thread: DUAL Pricing v2

Page 53 of 151 FirstFirst ... 343515253545563103 ... LastLast
Results 521 to 530 of 1503
  1. #521
    Join Date
    Jul 2009
    Posts
    71
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    in doing some more looking around i found that if i add an item into the cart which is not setup with multiple discounts, as such the default (0) discount is applied - as designed. the total for that item appears correctly in the cart -- see image

    regular price is 24 eur for all items
    customer logged in has pricing level 2
    item 1 pricing levels : 0-12.00-11.00-10.00
    item 2 is not discounted (default 0 in Wholesale Price (Net) field)


  2. #522
    Join Date
    Jan 2009
    Posts
    40
    Plugin Contributions
    1

    Default Re: DUAL Pricing v2

    Quote Originally Posted by jazznuts699 View Post
    in doing some more looking around i found that if i add an item into the cart which is not setup with multiple discounts, as such the default (0) discount is applied - as designed. the total for that item appears correctly in the cart -- see image

    regular price is 24 eur for all items
    customer logged in has pricing level 2
    item 1 pricing levels : 0-12.00-11.00-10.00
    item 2 is not discounted (default 0 in Wholesale Price (Net) field)
    Thanks for the info I'm trouble shooting right now... get back to you in a bit.

  3. #523
    Join Date
    Jan 2009
    Posts
    40
    Plugin Contributions
    1

    Default Re: DUAL Pricing v2

    I set up a new cart, and installed a fresh copy of the DP 1.5 mod. I'm getting the proper results with your set up.

    • customer set to WS level2
    • product pricing set to 0-12.00-11.00-11.00




    I don't know if your tpl_shopping_cart_default.php file is changed at all and calling a different value than $product['productsPriceEach'] or $product['productsPrice']

    It does look like your template is calling a custom value here. Or is excluding one or the other. Not exactly what's going on but the problem might lie there.

  4. #524
    Join Date
    Apr 2008
    Posts
    5
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    Hi Everyone,

    Hope all of you are having a great week.

    So, I am not sure how this mode will work for me.

    I rely in prices by attributes, I have set the prices to 0 and just the attribute price matters now.

    So, how the wholesale levels works? Are they multipliers? If so where I set the percentage?

    Ex: I have a product priced to 0 and its attributes +$78 and +$90, the attributes doesn't have a wholesale price tag. How can I show different prices for the wholesale and Retail?

    Thank you,
    Rogers

  5. #525
    Join Date
    Jun 2008
    Posts
    4
    Plugin Contributions
    0

    Default show both wholesale pricing and retail pricing

    Hello again, got another quick question for you. When I am logged in as a customer set as a wholesale customer when I look at the products in list form (see picture below) I only see the wholesale price. Is there a way to show both the retail and wholesale pricing.



    Thank You in advance for your help.

    Am running the most up to date version of zencart and the most up to date version of dual pricing.

  6. #526
    Join Date
    May 2007
    Location
    Melbourne, Australia
    Posts
    88
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    Hi,

    I'm using the 'dual pricing wholesale pricing_1-5" add on module, with zencart 1.3.8

    I've used it to set up a wholesale price for one of my customers. It seems to work ok if they add a few items to the cart but once they reach the quantity limits set for quantity discount the wholesale price is replaced with the quantity discount retail price.
    eg. normal retail price $6.75 @ 1, $6.50 @ 10, etc
    wholesale price is $4.50
    When the wholesale client adds 9 items he gets the $4.50 price, but if he orders 10 the price shoots up to $6.50

    Does anyone know how to fix this problem?

  7. #527
    Join Date
    Oct 2007
    Posts
    105
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    I started off by posting this in the wrong place... I'll try again... It was late.

    Right now I'm trying everything to see if I can show the first wholesale level to all customers- logged in or not. I want everything else to work like it currently does but statically show the potential wholesale price if the customer were to become a wholesale customer. I'm thinking that since that price is entered into the database, we should be able to capture it and put it on the product info template- Am I thinking too simple?

    I already know that my next goal will be to try and figure out if a person puts a certain item in their cart, they get moved to the wholesale pricing- much bigger issue that I haven't even begun to investigate yet!


    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

  8. #528
    Join Date
    Jun 2008
    Posts
    4
    Plugin Contributions
    0

    red flag Re: DUAL Pricing v2

    what happened to the help on this forum?
    It seems to have vanished. Did another thread get started someplace else. I am very confused!

  9. #529
    Join Date
    May 2004
    Posts
    766
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    If there is a new support link, I wish someone would post it.

    betty

  10. #530
    Join Date
    May 2004
    Posts
    766
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    I am still looking for a way to turn the Retail off completly. This store is a wholesale only store, yet yesterday someone placed an order at the retail price. Needless to say, I'm back here today searching again for a possible solution.

    thank you,

    betty
    Last edited by bettysue; 2 Sep 2009 at 06:40 PM. Reason: typos

 

 

Similar Threads

  1. Dual Pricing - Wholesale Pricing - Some issues I was able to fix
    By hollettster in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 17 Dec 2010, 12:00 AM
  2. Dual Pricing - Wholesale Pricing for Zen 1.3.7 works with Easypopulate
    By micheloo in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 4
    Last Post: 20 Jan 2010, 06:01 PM
  3. No Attributes after installing Dual Pricing - Wholsale Pricing
    By drybsmt in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 10 Sep 2009, 11:09 AM
  4. Quantity Discounts and Dual Pricing - Wholesale Pricing
    By snarkys in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 1
    Last Post: 2 Jul 2007, 06:47 PM
  5. Dual Pricing Module & Dual Tax Classes
    By WILL in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 25 May 2007, 10:44 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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR