Thread: DUAL Pricing v2

Page 77 of 151 FirstFirst ... 2767757677787987127 ... LastLast
Results 761 to 770 of 1503
  1. #761
    Join Date
    May 2008
    Location
    Virginia Beach, Virginia, United States
    Posts
    52
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    I've been trying to fix my issue with dual pricing and minimum orders add on and I can't seem to.

    I did what was suggested on this page:
    http://www.zen-cart.com/forum/showpo...&postcount=749

    Then I used various codes provided by this thread:
    http://www.zen-cart.com/forum/showth...t=91542&page=4

    The most current code I've inserted was the last one.

    The minimum seems to either work regardless of retail or wholesale or doesn't work at all. And now, when I try to check out it sends me the next part of the process, but it's a blank page.

    Any suggestions or help? Please.

  2. #762
    Join Date
    May 2008
    Location
    Virginia Beach, Virginia, United States
    Posts
    52
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    I went ahead and uninstalled the minimum order because upon talking to my boss, I realized we will not be using a minimum price for wholesale orders.

    What we actually need is something to ensure they meet a minimum product order.

    And the thing is, we sell a variety of things. Body art as well as eye art. Wholesale customers must meet a minimum of 50 eyes of any variety for them to meet their wholesale criteria for their order to go through.

    Is there anyway I can ensure this? The biggest problem I'm having with this idea is that customers can choose from a selection of eyes to get to the 50 required. A minimum in body art or accessories is not required. Just the set of 50 eyes.

    Please let me know if this is possible.

    I have the following add ons installed (i'm not sure if this would affect things):
    dual pricing w/bug fix (as featured on this thread)
    image handler 2
    slimbox
    ultimate cross sale

    I am using the version 1.3.9h of zencart and am currently running tests on a localhost.

  3. #763

    Default Re: DUAL Pricing v2

    Quote Originally Posted by marypotter View Post
    What we actually need is something to ensure they meet a minimum product order.

    Is there anyway I can ensure this?
    There have been a number of requests for either a minimum quantity or order value feature on this mod. (Please see previous page in this thread for two of them). I believe its on the "to-do" list. But at this time I do not believe that what you are asking is available.

  4. #764
    Join Date
    May 2008
    Location
    Virginia Beach, Virginia, United States
    Posts
    52
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    Yeah, I did notice those posts. I was just hoping that withing the last few days that perhaps this had changed. Thanks for letting me know.

  5. #765
    Join Date
    Oct 2009
    Posts
    63
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    First...Thank you all for this great contributions and all the trouble shooting, upgrades etc. I have Dual Pricing installed on 1.3.9.h and it works like a dream The only issue is with products that are on special. If a wholesale customer logs in and selects a product that is on special, he/she gets the special price not their wholesale price. Does anyone have anything on this or is the Special module not meant to be used with DP? All help will be greatly appreciated.
    Niko

  6. #766
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,732
    Plugin Contributions
    27

    Default Re: DUAL Pricing v2

    Quote Originally Posted by gearheadniko View Post
    First...Thank you all for this great contributions and all the trouble shooting, upgrades etc. I have Dual Pricing installed on 1.3.9.h and it works like a dream The only issue is with products that are on special. If a wholesale customer logs in and selects a product that is on special, he/she gets the special price not their wholesale price. Does anyone have anything on this or is the Special module not meant to be used with DP? All help will be greatly appreciated.
    Niko
    It's highly likely that the wholesale code has not been applied to the specials code. This is one of the reasons I have not released the attributes code update as I have not tested the new wholesale attributes pricing with specials.

    Twitch.

  7. #767
    Join Date
    Oct 2009
    Posts
    63
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    Thanks for the whole deal Twitch, I will patiently watch.
    Niko

  8. #768
    Join Date
    May 2008
    Location
    Virginia Beach, Virginia, United States
    Posts
    52
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    I read on here that other people are having issues where in the registration form, the radio button to request wholesale is not showing up. I did not see any posts that resolved this issue.

    Did anyone figure it out or did I miss the post?

    I installed the bug fixes as highlighted in this thread and I'm using the latest zen cart.

  9. #769

    Default Re: DUAL Pricing v2

    Dual Pricing SHIPPING, a fix so that you can have different shipping for retail vs. wholesale.

    I just figured this out for a customer that needed Zone Rate Table shipping, one set of pricing for retail and one set of pricing for wholesale! It's working beautifully for me.... Hope this helps someone else out!!!!

    FIRST install this add-on for the Zone Rate Clone
    http://www.zen-cart.com/index.php?ma...oducts_id=1409

    Then follow these instructions:

    In includes/modules/shipping/zones2.php file

    Around line 95 find

    // disable only when entire cart is free shipping
    if (zen_get_shipping_enabled($this->code)) {
    $this->enabled = ((MODULE_SHIPPING_ZONES2_STATUS == 'True') ? true : false);
    }

    ADD UNDERNEATH IT

    // disables wholesale shipping when you are retail customer
    $this->enabled = ((MODULE_SHIPPING_ZONES2_STATUS == 'True') ? true : false);
    if($_SESSION['customers_wholesale']=='1' && $this->enabled==true)
    {
    $this->enabled=true;
    }else{
    $this->enabled=false;
    }


    In includes/modules/shipping/zones.php file



    Around line 95 find

    // disable only when entire cart is free shipping
    if (zen_get_shipping_enabled($this->code)) {
    $this->enabled = ((MODULE_SHIPPING_ZONES_STATUS == 'True') ? true : false);
    }


    ADD underneath it


    // disables retail shipping when you are wholesale customer
    $this->enabled = ((MODULE_SHIPPING_ZONES_STATUS == 'True') ? true : false);
    if($_SESSION['customers_wholesale']=='0' && $this->enabled==true)
    {
    $this->enabled=true;
    }else{
    $this->enabled=false;
    }

  10. #770
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,732
    Plugin Contributions
    27

    Default Re: DUAL Pricing v2

    Quote Originally Posted by marypotter View Post
    I read on here that other people are having issues where in the registration form, the radio button to request wholesale is not showing up. I did not see any posts that resolved this issue.

    Did anyone figure it out or did I miss the post?

    I installed the bug fixes as highlighted in this thread and I'm using the latest zen cart.
    I have added the wholesale code only to the 'add customers in admin' module (I have not posted this mod just yet but wow does it ever work! 400 wholesale customers in one click!). The radio button was not added as an option on the core zen sign up page in anything that I have posted.

    Please define where you want this 'radio button for wholesale request' to be.

    Thanks

    Twitch.

 

 

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

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