Thread: MSRP contrib

Page 9 of 40 FirstFirst ... 789101119 ... LastLast
Results 81 to 90 of 393
  1. #81
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by backinthesaddle View Post
    Hello Lextechs

    Yes - please send me the zip file for me to have a compare with - thank you.
    Sent to you email i have attached it here also for any one else
    Attached Files Attached Files
    Lextechs.com Powered By ZenCart

  2. #82
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by backinthesaddle View Post
    I am so excited (sad!!) because I finally got this working all by myself!!!

    For anyone else really battling my problem turned out to be in step 5. I had cut and pasted code from the 'read me' instruction file into the functions_prices.php file. On going through the install for about the 5th time line by line i just noticed a visual difference in the code. The code I had cut and pasted had no gaps around the = sign, whereas the code in the original file had gaps.

    Here's what I mean

    Instruction text file step 5 says:

    Code:
      Find: 
      
       $display_sale_price = zen_get_products_special_price($products_id, false);
       
      After add:
      
     $display_msrp_price=zen_get_products_msrp_price($products_id);
     $display_price_save=zen_get_products_price_save($products_id);
    I changed this to

    Code:
      After add:
      
     $display_msrp_price = zen_get_products_msrp_price($products_id);
     $display_price_save = zen_get_products_price_save($products_id);
    I hope this saves someone the headache I had. Now it is done it does work well and I am pleased so keep perservering if you are struggling!
    That make sense however is you copied and pasted from the text file there should not have been any gaps when you pasted it over, I am glad you got it working. a good text editor is Notepad++ good for editing almost any file just FYI.
    Lextechs.com Powered By ZenCart

  3. #83
    Join Date
    Mar 2007
    Posts
    74
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Hi Lextechs - I was using Notepad++. But hey, ho - it is working now, that is the main thing.

  4. #84
    Join Date
    Jul 2007
    Location
    Roseville, Michigan
    Posts
    188
    Plugin Contributions
    0

    Default Re: MSRP contrib

    I have this loaded on zencart 1.3.8a. Everything looks fine, but I'm having a problem. When my price is higher than the MSRP, the function is still showing. So when people just the page it's showing savings as a negative. So if my price is $4.00 and the MSRP is $3.75. It show my customer that they are saving $-0.25. I thought that is module was to show just my price if it was higher than the MSRP. Why is this showing up?

    http://www.jhelectronics.com

  5. #85
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by smoke133 View Post
    I have this loaded on zencart 1.3.8a. Everything looks fine, but I'm having a problem. When my price is higher than the MSRP, the function is still showing. So when people just the page it's showing savings as a negative. So if my price is $4.00 and the MSRP is $3.75. It show my customer that they are saving $-0.25. I thought that is module was to show just my price if it was higher than the MSRP. Why is this showing up?

    http://www.jhelectronics.com
    Scroll down to bigsy85 that post shows what to do to fix that.
    Lextechs.com Powered By ZenCart

  6. #86
    Join Date
    Jul 2007
    Location
    Roseville, Michigan
    Posts
    188
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by lextechs View Post
    Scroll down to bigsy85 that post shows what to do to fix that.
    lextechs, this worked to fix the problem if the MSRP is the same as my price, but it didn't fix it if my price was more than the MSRP.

    Here is an example.
    http://www.jhelectronics.com/4outlet...r-p-34060.html

  7. #87
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by smoke133 View Post
    lextechs, this worked to fix the problem if the MSRP is the same as my price, but it didn't fix it if my price was more than the MSRP.

    Here is an example.
    http://www.jhelectronics.com/4outlet...r-p-34060.html
    I would think you could use that section and change to compare for greater than or less than.
    Lextechs.com Powered By ZenCart

  8. #88
    Join Date
    Jul 2007
    Location
    Roseville, Michigan
    Posts
    188
    Plugin Contributions
    0

    Default Re: MSRP contrib

    I'm not sure I know where your talking about to do that.

  9. #89
    Join Date
    Mar 2009
    Posts
    21
    Plugin Contributions
    0

    Default Re: MSRP contrib

    I have NO sql and very little php knowledge, though I do manage to kludge my way through.

    Building on the MSRP mod idea, I would like to add a couple of fields to the collect_info.php page. I want to add an entry for my cost and an entry for map (Minimum Advertised Price).

    IE:
    Products Price (Net): 10
    Products MSRP: 15
    Products MAP: 10
    Our Cost: 5
    Products Price (Gross):

    Then I would like those new values saved into the products table under products_cost and products_map. I was able to create the fields in the DB. But now I don't know how to populate those fields.

    Then in my categories list I want to display the cost price next to/under the current product price. This will help me in creating sales and specials without having to look through spreadsheets, web sites and catalogs to make sure I'm not pricing under my own costs.

  10. #90
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by sonjamichelle View Post
    I have NO sql and very little php knowledge, though I do manage to kludge my way through.

    Building on the MSRP mod idea, I would like to add a couple of fields to the collect_info.php page. I want to add an entry for my cost and an entry for map (Minimum Advertised Price).

    IE:
    Products Price (Net): 10
    Products MSRP: 15
    Products MAP: 10
    Our Cost: 5
    Products Price (Gross):

    Then I would like those new values saved into the products table under products_cost and products_map. I was able to create the fields in the DB. But now I don't know how to populate those fields.

    Then in my categories list I want to display the cost price next to/under the current product price. This will help me in creating sales and specials without having to look through spreadsheets, web sites and catalogs to make sure I'm not pricing under my own costs.
    There are two modules that does that one is called MAP pricing and one is cost +profit look in the download section
    Lextechs.com Powered By ZenCart

 

 
Page 9 of 40 FirstFirst ... 789101119 ... LastLast

Similar Threads

  1. v151 MSRP Display Mod
    By Larry0652 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 26 Oct 2017, 12:36 PM
  2. v154 Msrp
    By SilverHD in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 6 Oct 2015, 09:00 AM
  3. v139h MSRP Add-on
    By MortalWombat in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 23 Aug 2012, 01:11 AM
  4. Msrp display issue
    By CRYSTALDOLL in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 10 Aug 2009, 02:40 PM
  5. MSRP Contrib, can anyone install it for me ?
    By Spdster in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 14 Jan 2009, 08:06 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