Page 11 of 14 FirstFirst ... 910111213 ... LastLast
Results 101 to 110 of 136
  1. #101
    Join Date
    Feb 2008
    Location
    Philadelphia
    Posts
    279
    Plugin Contributions
    3

    Default Re: Group Pricing Per Item Issue

    go to downloads area on menu bar above and search for easypopulate and then install per instruction in pack. This is true of any of the things you find in the downloads area. They are all tested (some not recently) usable mods for a zencart site.

    Install is very simple especially since you already have GP1.3.3 installed.

  2. #102
    Join Date
    Aug 2010
    Posts
    25
    Plugin Contributions
    0

    Default Re: Group Pricing Per Item Issue

    its not slove the problem...
    Is there any file to update for showing the right group price in checkout proccess like in the shopping cart?

  3. #103
    Join Date
    Feb 2008
    Location
    Philadelphia
    Posts
    279
    Plugin Contributions
    3

    Default Re: Group Pricing Per Item Issue

    Sorry to take so long.

    If you do the following it works for many people

    1) Install Group Pricing 1.3.3

    2) Install the EZ Pop GP add-on

    Then do the group price as your "retail" price and the group special price as your "discounted" price for that group.

    As a result the retail and discounted price show seemlessly and the discounted price drops into the shopping cart for routine ordering.

    Don't forget you must assign the customer in question to the same group associated or the data points would not match

  4. #104
    Join Date
    Nov 2010
    Posts
    44
    Plugin Contributions
    0

    Default Re: Group Pricing Per Item Issue

    How to get the group pricing to display on the category pages in addition to the retail price (and not just display this on individual items):

    Solution:

    Look for line 102 in product_listing.php (zen cart file)

    includes>modules>product_listing.php

    REPLACE:

    break;
    case 'PRODUCT_LIST_PRICE':
    $lc_price = zen_get_products_display_price($listing->fields['products_id']);
    $lc_align = 'right';
    $lc_text = $lc_price;

    WITH THIS:

    break;
    case 'PRODUCT_LIST_PRICE':
    $lc_price = zen_get_products_display_price($listing->fields['products_id']) .
    zen_get_products_retail_display_price($listing->fields['products_id']) . '<br />';
    $lc_align = 'right';
    $lc_text = $lc_price;


    Credits to Aceh (Linda) for helping with this.

    This is a vital addition for wholesale using this Mod, IMHO and works beautifully.

    I would be very glad if someone could help spot how to achieve the same affect on Products_All

  5. #105
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Group Pricing Per Item Issue

    Using your templates and overrides for the tpl_modules_products_all_listing.php ...

    Change the line:
    Code:
            $products_price = zen_get_products_display_price($products_all->fields['products_id']);
    to include the retail function in the same manner, but with the products_id reference for this file:
    $products_all->fields['products_id']

    use the code:
    Code:
            $products_price = zen_get_products_display_price($products_all->fields['products_id']) . zen_get_products_retail_display_price($products_all->fields['products_id']);
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #106
    Join Date
    Nov 2010
    Posts
    44
    Plugin Contributions
    0

    Default Re: Group Pricing Per Item Issue

    Fantastic - thank you!

  7. #107
    Join Date
    Sep 2006
    Posts
    13
    Plugin Contributions
    0

    Default Re: Group Pricing Per Item Issue

    Hi all,

    has anyone else noticed that the '($0.00 Retail)' text under the group price doesn't appear to include tax when tax is set to show in Shop?

    If i am correct the problem lies in file:

    /cart/includes/functions/functions_prices.php

    Specifically in - function zen_get_products_retail_display_price($products_id) - in this line of code:
    PHP Code:
    if ($display_retail_price$display_retail_price '<span id="retailPrice">' .  RETAIL_PRICE_PREFIX_TEXT $currencies->display_price($display_retail_pricezen_get_tax_rate($product_check->fields['products_tax_class_id'])) . RETAIL_PRICE_SUFFIX_TEXT '</span><br />' $display_retail_price ' - - ' $product_check->fields['products_tax_class_id']; 
    this part of the above line of code doesn't work as there is no variable '$product_check' inside this function...:
    PHP Code:
    $product_check->fields['products_tax_class_id'
    to fix this add this line of code in - function zen_get_products_retail_display_price($products_id)
    PHP Code:
    $product_check $db->Execute("select products_tax_class_id, products_price from " TABLE_PRODUCTS " where products_id = '" . (int)$products_id "'" " limit 1"); 
    working example:
    PHP Code:
        $product_check $db->Execute("select products_tax_class_id, products_price from " TABLE_PRODUCTS " where products_id = '" . (int)$products_id "'" " limit 1");

        
    // no prices on Document General
        
    if ($product_check->fields['products_type'] == 3) {
          return 
    ''
    regards,
    Matthew
    Last edited by swagmani; 27 Nov 2010 at 10:26 PM.

  8. #108
    Join Date
    Dec 2008
    Posts
    81
    Plugin Contributions
    0

    Default Re: Group Pricing Per Item Issue

    Has anyone used this add-on with Zen-Cart 1.3.9h?

    If so, and if there are any changes needed in the add-on files, maybe someone could upload an updated version of this add-on to the Zen-Cart website?

    John

  9. #109
    Join Date
    Nov 2007
    Location
    Woodbine, Georgia, United States
    Posts
    4,009
    Plugin Contributions
    61

    Default Re: Group Pricing Per Item Issue

    Quote Originally Posted by JRayfield View Post
    Has anyone used this add-on with Zen-Cart 1.3.9h?

    If so, and if there are any changes needed in the add-on files, maybe someone could upload an updated version of this add-on to the Zen-Cart website?

    John
    It doesn't work at all.....

    ~Melanie
    PRO-Webs, Inc. :: Recent Zen Cart Projects :: Zen Cart SEO – 12 Steps to Success
    **I answer questions in the forum, private messages are NOT answered. You are welcome to contact us via our website for professional engagements.

  10. #110
    Join Date
    Dec 2008
    Posts
    81
    Plugin Contributions
    0

    Default Re: Group Pricing Per Item Issue

    Does anyone have any solution to providing this functionality in version 1.3.9h?

    John Rayfield, Jr.
    www.rayfield.net

 

 
Page 11 of 14 FirstFirst ... 910111213 ... LastLast

Similar Threads

  1. online group pricing vs group pricing per item working with sale maker
    By giftsandwhatnot in forum Addon Payment Modules
    Replies: 1
    Last Post: 24 Oct 2011, 09:22 AM
  2. Group Pricing (per item) shipping issue
    By giftsandwhatnot in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 19 Aug 2011, 03:56 PM
  3. Group Pricing Per Item - sort products by price issue, suggested code to fix
    By swagmani in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 2 Mar 2011, 04:14 PM
  4. Group Pricing (per Item) Issue
    By daschenbrener in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 2
    Last Post: 8 Jan 2007, 02:42 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