Print Page | Close Window

M. A. P. pricing

Printed From: ProductCart E-Commerce Solutions
Category: ProductCart
Forum Name: Using ProductCart
Forum Description: Running your store with ProductCart
URL: https://forum.productcart.com/forum_posts.asp?TID=941
Printed Date: 06-July-2025 at 5:44am
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: M. A. P. pricing
Posted By: baddawg
Subject: M. A. P. pricing
Date Posted: 08-July-2007 at 5:52pm
Is there a way to not show pricing on my products due to M A P pricing(Manufacturers minimum pricing allowed) When in fact I can sell for less...I cannot show the lower price on the site....but I can allow the customer to click checkout and then see the reduced price there, and of course then allowing them to clear the basket.

I have searched the manual and cannot find any reference to this.

Thanks for the help



Replies:
Posted By: chris_b
Date Posted: 08-July-2007 at 6:51pm
baddawg,

You will have to have the map pricing done by a developer.

Chris


Posted By: fidjiti
Date Posted: 08-July-2007 at 9:43pm
Just an idea. I have removed the "list price" from showing up on my site all together. It was just a matter of hiding the code in which the "list price" is shown. I can't remember what that code was or what page I had to edit, but I know it can be done.

If you had MAPs on all of your products and wouldn't need to show the "online price" for any of the products except during checkout then, I guess you could probably just edit the code to simply never display the "online price" just like I removed the "list price" from all of my pages and even the ajax bubble. The pages you'd need to edit would depend on how you've decided to display your products in categories and the actual product pages.
I don't think you'd need a developer, because I am not a dev. and I was able to change the code with some guidance. You just need to know what code you need to change once you have the pages ready. Make sure you always back-up the files before you change them.
Feel free to correct me if I am wrong. Hope that helps and makes sense.



-------------
Linda - I wish I knew ASP.
To view my ever evolving site click the "www" button below. :)


Posted By: fidjiti
Date Posted: 08-July-2007 at 9:50pm
Oh, also I think maybe this post would be good to read, for more ideas on how to show or not show the pricing. Brainstorming! You could change the text which says "price" to whatever you want.  http://www.earlyimpact.com/forum/forum_posts.asp?TID=906&KW=list+price - http://www.earlyimpact.com/forum/forum_posts.asp?TID=906& ;KW=list+price

-------------
Linda - I wish I knew ASP.
To view my ever evolving site click the "www" button below. :)


Posted By: baddawg
Date Posted: 08-July-2007 at 10:53pm
Thanks Chris...fidjiti,I sell many different product, and only the electronics that I have started to add need MAP pricing, everything else I am ok on, so no need to MAP everything.

I will hit Elance.com to find someone to do this.

Thanks for the input


Posted By: cbadchris1
Date Posted: 13-September-2007 at 3:38pm

http://www.offroadunlimited.com/ProductCart/PC/viewPrd.asp?idcategory=1798&idproduct=665 - http://www.offroadunlimited.com/ProductCart/PC/viewPrd.asp?i dcategory=1798&idproduct=665

Check this out. It was a simple "if then statement" and making sure the online price is lower than list. I display the list with strike-through and the discount and hide the online-price.

Chris



-------------
cbadchris


Posted By: fidjiti
Date Posted: 13-September-2007 at 5:27pm
hey that's awesome! Is the code hard to implement? What pages did you have to edit? where and with what code?

-------------
Linda - I wish I knew ASP.
To view my ever evolving site click the "www" button below. :)


Posted By: cbadchris1
Date Posted: 13-September-2007 at 5:51pm

You have to edit viewprd.asp and viewcategories.asp. Look for list price and online-price.

Chris



-------------
cbadchris


Posted By: fidjiti
Date Posted: 13-September-2007 at 6:05pm
what's the code you used to replace the current info?

-------------
Linda - I wish I knew ASP.
To view my ever evolving site click the "www" button below. :)


Posted By: geoff
Date Posted: 17-September-2007 at 10:33pm

The MAP issues seems to come up for a number of people. Myself included.

It would be a good feature for Product cart to add a MAP 1/0 flag, as standard, to the attributes for each product and then have an if clause in the viewprd.asp and viewcat*.asp file. If MAP =1 then read MAP message if not show price etc. Simple but useful. 

Custom coding requires adding an extra table, which is more complicated than needed.

Just my opinion.



Posted By: cbadchris1
Date Posted: 18-September-2007 at 12:04am

Edit "Viewprdcode.asp" as such. Maybe we can put this issue to bed.

Enjoy,

Chris

'edit price information here to display list price------------------------------------------------------- ------------------------------------------------------------ ------------------------------------------------------------ -  
  'START - Visually separate prices from other information. Don't use if layout is One Column.
  if pcv_strViewPrdStyle <> "o" then
   response.write "<div class='pcShowPrices'>"
  end if
 
  ' Display the online price if it's not zero
  if (pPrice < pListPrice) and (pcv_intHideBTOPrice<>"1") then
   response.write "<div class='pcShowProductPrice'>"
   response.write "<img src=images/salecart.gif border=0>"

   'response.write dictLanguage.Item(Session("language")&"_viewPrd_3")
   'response.write scCurSign & money(pPrice)'change this to pListPrice
   response.write "</div>"
   response.write "<div class='pcShowProductPrice'>"
    response.write dictLanguage.Item(Session("language")&"_viewPrd_20")
    response.write "<span class='pcShowProductListPrice'>" & scCurSign & money(pListPrice) & "</span>"
    response.write "</div>"
    response.write "<div class='pcShowProductSavings'>"
    response.write dictLanguage.Item(Session("language")&"_viewPrd_4")
    response.write scCurSign & money((pListPrice-pPrice))
    'response.write "<br>"
    response.write "</div>"
   else



-------------
cbadchris


Posted By: Greg Dinger
Date Posted: 20-September-2007 at 12:16am

I tackled this by adding a MAP flag to the product table and the associated admin, then a bit of logic that causes a "see our price" button.  Clicking that button displays a popup wiht the pricing information and the discount savings. On other sites I have also displayed an explanation/disclaimer as to why this is necessary.

Example: http://www.marineproductsoutlet.com/store/pc/viewPrd.asp?idcategory=0&idproduct=354 - http://www.marineproductsoutlet.com/store/pc/viewPrd.asp?idc ategory=0&idproduct=354

 




Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net