Page 7 of 13 FirstFirst ... 56789 ... LastLast
Results 61 to 70 of 121
  1. #61
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: My Add-On for MAP (mininum advertised price).

    Quote Originally Posted by webskipper View Post
    I do not. I am using the Map price contribution though. There must be a way to use MAP price as the default.
    To change the product creation MAP field to always ON when you are adding a new product through the admin you can make a small change in the database, changing the MAP setting from 0 (off) to 1 (on). It is in the table products and the column to edit is map_enabled. Click the pencil icon in the map_enabled row and change the value from 0 to 1.

    You can also change this for existing products by running this sql command in phpmyadmin or a similar database control program:

    UPDATE TABLE products SET map_enabled=1;

    This will change all products to map being on. If you only want some products to have map enabled you need to run this:

    UPDATE TABLE products SET map_enabled=1 WHERE manufacturer_id=(whatever manufacturer you want);

    If you are using prefixes you would need to change the table name, for instance zen_products.

    you can change manufacturer_id to any of the other columns in the products table that will help you filter the products you want to change. For instance, if you use an identifying code as part of the model number you could put WHERE products_model=(whatever)

    As always, you should back up the table before doing any modifications to it!

    Zen Cart and it's community are the best!!

  2. #62
    Join Date
    Mar 2012
    Posts
    315
    Plugin Contributions
    0

    Default will this M.A.P. add-on work with V1.5.0?

    This add-on is called "MAP Pricing ( m.a.p ) : Add to Cart to See Price" it says "Zen Cart™ Version: v1.3.6" .. I need to add MAP pricing (att to cart to see price) to my website, so if this will not work, does anyone know of one that will work? I have V 1.5.0 My website is www.stageandtheaterlighting.com .. Thanks!!

  3. #63
    Join Date
    Dec 2009
    Location
    Amersfoort, The Netherlands
    Posts
    2,845
    Plugin Contributions
    25

    Default Re: will this M.A.P. add-on work with V1.5.0?

    Make a back up of your shop and just try it out.

  4. #64
    Join Date
    Mar 2012
    Posts
    315
    Plugin Contributions
    0

    Default Re: will this M.A.P. add-on work with V1.5.0?

    Thanks for your suggestion, but that's not exactly the answer that I am looking for. Though I really do appreciate the suggestion!! Sometimes there are unintended consequences, and I would prefer not to find out 5 or 6 months from now that something has not been working properly, I have been missing sales because of that, etc.. so,, if anyone knows within a reasonable probability of tolerance that it will perform as intended in the 1.5.0 version, or if it will not work properly, that knowledge would be my first choice.. if not, I will certainly take your advice and do what you suggested. Thanks!! ps.. I originally posted this in the wrong place..... sorry

  5. #65
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: My Add-On for MAP (mininum advertised price).

    As a courtesy I've taken a look at the code and simply updated it to work with the new version.


    Updated for ZC v1.5.0:
    http://www.zen-cart.com/downloads.php?do=file&id=66

    Do remember that this mod overwrites several core files, so if you've already customized any of the files that are overwritten by this mod, you'll need to redo (merge) those customizations.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  6. #66
    Join Date
    Jan 2012
    Posts
    488
    Plugin Contributions
    0

    Default Re: My Add-On for MAP (mininum advertised price).

    Quote Originally Posted by DrByte View Post
    This mod works great on 1.5.

    One question though, is there any way to update it to where 'Sale Maker' won't discount from MAP, but the underlying 'price'?

    If I create a sale on a category, some items have MAP pricing and the 'advertised' price is now minus the discount, obviously a no no.

  7. #67
    Join Date
    Jan 2008
    Posts
    139
    Plugin Contributions
    0

    Default Re: My Add-On for MAP (mininum advertised price).

    Quote Originally Posted by Limitless View Post
    This mod works great on 1.5.
    Not so much on 1.5.1, it seems...

    I have a fresh 1.5.1 install with CKEditor, EasyPopulate, ImageHandler4, and Zen Lightbox installed (none of which involve the files used by the MAP Pricing module).

    MAP pricing setup for products in Admin seems to work okay, but once set, browsing the product's page reveals the MAP price displayed in red, along with the "For an even lower price, add to cart" text (e.g. $25 For an even lower price, add to cart.). When the item is added to the cart, the MAP price is not carried over, so the cart displays the standard, non-MAP price.

    I even tried merging the MAP code into the ZC distribution files, but got the same results.

    Has anyone else noted this behavior?
    Last edited by DBB1; 30 Sep 2012 at 11:32 PM. Reason: quote

  8. #68
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: My Add-On for MAP (mininum advertised price).

    Quote Originally Posted by DBB1 View Post
    MAP pricing setup for products in Admin seems to work okay, but once set, browsing the product's page reveals the MAP price displayed in red, along with the "For an even lower price, add to cart" text (e.g. $25 For an even lower price, add to cart.). When the item is added to the cart, the MAP price is not carried over, so the cart displays the standard, non-MAP price.
    Um ... that's exactly how it's supposed to work.

    "M.A.P." means "minimum advertised price", which is the lowest price the manufacturer will allow the storeowner to display the product for ... unless they add the product to the cart.
    So, the Minimum Advertised Price would be perhaps $25.00, but when they add the product to the cart, it will be added into the shopping basket at the lower price of say $18.95 which is the price the storeowner is selling it for.

    MAP is not the "cheaper" price. It's the "higher" price, and the store's main price for the product is the price at which the store will actually sell the product ... just like any other non-MAP-enabled product would be treated.
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #69
    Join Date
    Jan 2012
    Posts
    488
    Plugin Contributions
    0

    Default Re: My Add-On for MAP (mininum advertised price).

    And after getting yelled at by numerous vendors, I have gone to straight MAP pricing, consumer be damned...

  10. #70
    Join Date
    Jan 2008
    Posts
    139
    Plugin Contributions
    0

    Default Re: My Add-On for MAP (mininum advertised price).

    Quote Originally Posted by DrByte View Post
    "M.A.P." means "minimum advertised price", which is the lowest price the manufacturer will allow the storeowner to display the product for ... unless they add the product to the cart.
    I understand MAP pricing, it just seemed a little counter-intuitive from similar products I've used in the past, where the MAP price was used as the lower, cart price. Thanks for the clarification.

 

 
Page 7 of 13 FirstFirst ... 56789 ... LastLast

Similar Threads

  1. v150 MAP Pricing v1.5 - display strike-through on MAP Price?
    By Johnnycopilot in forum All Other Contributions/Addons
    Replies: 20
    Last Post: 15 Feb 2013, 10:40 PM
  2. "Click for Price" for mininum advertised price
    By gems14k in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 17 Nov 2006, 02:02 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