Thread: DUAL Pricing v2

Page 140 of 151 FirstFirst ... 4090130138139140141142150 ... LastLast
Results 1,391 to 1,400 of 1503
  1. #1391
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: DUAL Pricing v2

    Quote Originally Posted by vyardain View Post
    Attributes and Dual Pricing:

    Has anyone gotten attribute pricing to work properly on a 1.5.5d installation?

    I am working on a fresh install with a theme/skin/template but no other mods at the moment and while the dual pricing mod works for the base price (showing wholesale customers both the retail price and the wholesale and properly charging wholesale when the product is added to the cart), attributes are only using the retail price difference.

    tl;dr Attributes only show retail pricing and when added to the cart subtract only retail pricing even when clearly seeing the effects of dual pricing on the base price.
    ZC 1.5.5
    PHP 5.6

    Thanks for any information you can provide!
    This does work on 1.5.5. It's been awhile since I've looked the code, as I recall you set the attribute pricing for each level. I'm not clear on the 'difference' you are referring to. Can you share a url?

  2. #1392
    Join Date
    Apr 2015
    Location
    PA
    Posts
    2
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    Hi Jeking, Thanks for getting back to me. When I say "difference" the attribute in question actually reduces the product price so I am using "difference" in the subtraction sense.

    Basically our MSRP customers should see a -100$ shift in the cost of the product when they select "DC Only" whereas the dealers should see -60$ shift in the price.

    This is happening on all of our products, but I am direct linking to one here just to save you some hassle:
    http://www.korea-brass-usa.com/index...roducts_id=190

    You can use this testing pricing bracket 1 username and password to see the effects of the dual pricing mod:
    username: [email protected]
    password: testdealer

    Here is a screen cap of the attributes controller so you can see the pricing setup in there:
    Name:  Attib Cont.jpg
Views: 222
Size:  30.9 KB

  3. #1393
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: DUAL Pricing v2

    That's not how the wholesale attribute pricing was designed to be used. From the ReadMe:

    2. Attributes can be set in the same way, but you need to enter the prices in the "Trade" field and use comma separation, eg. 50.00,30.00,0.00,25,00

    The field is now labeled "Wholesale Price", just to clarify.

  4. #1394
    Join Date
    Jun 2016
    Location
    Suffolk VA
    Posts
    605
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    I apologize for not reading back through all the comments to see if this has been addressed somewhere else.

    I've had the wholesale pricing plugin installed for a while but have only just begun adding wholesale prices to my products. I see that it's possible to add prices by attribute, but the wholesale price doesn't appear in the drop down list that the wholesale customer sees. They have to actually add the product to their cart in order to see the wholesale price. Is there any likelihood of this being changed so wholesale prices will display properly on the product page? I see that it does work for items that are not priced in the attrirbutes.

  5. #1395
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,731
    Plugin Contributions
    27

    Default Re: DUAL Pricing v2

    Quote Originally Posted by HeleneWallis View Post
    I apologize for not reading back through all the comments to see if this has been addressed somewhere else.

    I've had the wholesale pricing plugin installed for a while but have only just begun adding wholesale prices to my products. I see that it's possible to add prices by attribute, but the wholesale price doesn't appear in the drop down list that the wholesale customer sees. They have to actually add the product to their cart in order to see the wholesale price. Is there any likelihood of this being changed so wholesale prices will display properly on the product page? I see that it does work for items that are not priced in the attrirbutes.
    This is the result of using dropdowns to display attribute price... without the price code being duplicated in that particular coding block.

    To correct it, you'll need to add the wholesale price loop to the attributes dropdown pricing code block.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    Twitch Base8 - Obsidian - This, is what's new.

  6. #1396
    Join Date
    Jun 2016
    Location
    Suffolk VA
    Posts
    605
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    Quote Originally Posted by twitchtoo View Post
    This is the result of using dropdowns to display attribute price... without the price code being duplicated in that particular coding block.

    To correct it, you'll need to add the wholesale price loop to the attributes dropdown pricing code block.
    And that would be where? I've looked at function_prices.php and see where the dual pricing code is inserted, but I don't immediately see what to add or where. Or even if that's the correct program to add it to.

  7. #1397
    Join Date
    Feb 2016
    Location
    Canada
    Posts
    186
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    Hello,

    I am hoping for some guidance with the dual pricing add-on and minimum order add-on for wholesale customers. I have had success with assigning a minimum order amount in "class.minimum_order_amount.php" (see previous post #1389) however; I now want the flexibility to have different minimum order amounts for different wholesale customers. I have created a new field in my database called "customers_minorder" which can be changed to any value in "customers.php" through the admin panel. The problem I have is accessing the value of "customer_minorder" in the "class.minimum_order_amount.php" file for the minimum order add-on. Any guidance on the syntax to access this value will be greatly appreciated.

    Thanks

  8. #1398
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,464
    Plugin Contributions
    11

    Default Re: DUAL Pricing v2

    Just a note on the installation. Great work on identifying where the changes are located in the files. Makes merging easier.
    I believe there's a small error on line 39 of each README.txt. Shouldn't
    Code:
    2. Attributes can be set in the same way, but you need to enter the prices in the "Wholesale Price" field and use comma separation, eg. 50.00-30.00-0.00-25,00
    be
    Code:
    2. Attributes can be set in the same way, but you need to enter the prices in the "Wholesale Price" field and use comma separation, eg. 50.00,30.00,0.00,25.00
    THANX for your work.

  9. #1399
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,582
    Plugin Contributions
    29

    Default Re: DUAL Pricing v2

    Quote Originally Posted by dbltoe View Post
    Just a note on the installation. Great work on identifying where the changes are located in the files. Makes merging easier.
    I believe there's a small error on line 39 of each README.txt. Shouldn't
    Code:
    2. Attributes can be set in the same way, but you need to enter the prices in the "Wholesale Price" field and use comma separation, eg. 50.00-30.00-0.00-25,00
    be
    Code:
    2. Attributes can be set in the same way, but you need to enter the prices in the "Wholesale Price" field and use comma separation, eg. 50.00,30.00,0.00,25.00
    THANX for your work.
    @dbltoe Thanks for pointing that out. I'll update that for the next version.

  10. #1400
    Join Date
    Mar 2011
    Location
    Ireland
    Posts
    286
    Plugin Contributions
    0

    Default Re: DUAL Pricing v2

    Hi All,
    I have installed this on 1.5.5e a few things:
    1. it is not picking up on the wholesale pricing prices amounts even though they are in the database.
    2. it is displaying the normal price twice on the product info display
    3. even if it was picking up the correct price, it is displaying for all to see and not just wholesale customers.
    probably issue with the files, installing this on a bought zencart theme
    thanks for any help in advance.

 

 

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