Thread: MSRP contrib

Page 18 of 40 FirstFirst ... 8161718192028 ... LastLast
Results 171 to 180 of 393
  1. #171
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: MSRP contrib

    This mod works great! I am using it with product - general. Since, I have a bookstore with books and other items. I have product - book mod working and would like to add this one to it. All products should have same layout if book or not.

    I can not get this mod to work with product - books. What files need to be modified? I am guessing sql should have something added to it.

    Does anyone know what to do? I looked thru forum and could not find solution.

    Thanks, Kim

  2. #172
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: MSRP contrib

    Great mod!

    .... except it needs to work with MAP pricing somehow or only work when logged in.
    Cheers!
    v2.0+

  3. #173
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by kburner View Post
    This mod works great! I am using it with product - general. Since, I have a bookstore with books and other items. I have product - book mod working and would like to add this one to it. All products should have same layout if book or not.

    I can not get this mod to work with product - books. What files need to be modified? I am guessing sql should have something added to it.

    Does anyone know what to do? I looked thru forum and could not find solution.

    Thanks, Kim
    Anyone know how to get his mod working with product-book mod?

  4. #174
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by kburner View Post
    Anyone know how to get his mod working with product-book mod?
    I am still trying to get this working with Book product. Anyone know what file to modify?

  5. #175
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by kburner View Post
    I am still trying to get this working with Book product. Anyone know what file to modify?
    I took this on with my test store. I followed the readme file for MRSP and tried to apply to product-book files.
    Made these changes to get MSRP to work with product - book.

    Sql file:

    Originally added with product - general. I did not make any changes or additions to sql.

    ALTER TABLE products ADD `products_msrp` DECIMAL( 15, 4 ) NOT NULL AFTER `products_price` ;


    1. admin/includes/lang/english/product_book. manually installed to end of file...

    define('TEXT_PRODUCTS_MSRP', ' MSRP: ');
    define('TEXT_PRODUCTS_OUR_PRICE', ' Our Price: ');
    define('TEXT_PRODUCTS_SALE', ' Sale Price: ');
    define('TEXT_PRODUCTS_SAVINGS', ' You Save: ');
    define('TEXT_PRODUCTS_PRICE_MSRP', 'Products MSRP:');

    2. admin/modules/update_product.php
    This file does not have product_book one. Made changes to
    admin/includes/modules/update_product.php

    Added:
    $tmp_value = zen_db_prepare_input($_POST['products_msrp']);
    $products_msrp = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value;
    $tmp_value = zen_db_prepare_input($_POST['products_price']);
    $products_price = (!zen_not_null($tmp_value) || $tmp_value=='' || $tmp_value == 0) ? 0 : $tmp_value;

    Added:
    'products_msrp' => $products_msrp,


    3. admin/modules/product/collect_info.php This file does not have product_book one. Changes made to
    admin/includes/modules/product/collect_info.php

    Added:
    'products_msrp' => '',

    and added:
    p.products_image, p.products_price, p.products_msrp, p.products_virtual, p.products_weight,

    Could not find...
    <tr bgcolor="#ebebff">
    <td class="main"><?php echo TEXT_PRODUCTS_PRICE_GROSS; ?></td>
    <td class="main"><?php echo zen_draw_separator('pixel_trans.gif', '24', '15') . '&nbsp;' . zen_draw_input_field('products_price_gross', $pInfo->products_price, 'OnKeyUp="updateNet()"'); ?></td>
    </tr>

    Therefore...did NOT add
    and add immediately above it:

    <tr bgcolor="#ebebff">
    <td class="main"><?php echo TEXT_PRODUCTS_PRICE_MSRP; ?></td>
    <td class="main"><?php echo zen_draw_separator('pixel_trans.gif', '24', '15') . '&nbsp;' . zen_draw_input_field('products_msrp', $pInfo->products_msrp, ''); ?></td>
    </tr>

    4. includes/functions/functions_prices.php
    Did not make any changes to file and did not see one for product_book

    5. includes/languages/english/product_book.php
    Added:
    define('TEXT_PRODUCT_MSRP', 'Retail Price: ');
    define('TEXT_PRODUCT_SAVE', 'You save: ');
    define('TEXT_PRODUCT_OUR', 'Our Price: ');

    6. includes/languages/english.php
    No other files modified.

    I can see MRSP when I choose product - book and can add price. But, price does not remain when I click on preview. And I do not see it on site.

    I am no expert at this. Is there anyone that can give suggestions on how to get to work?

    Thanks, Kim

  6. #176
    Join Date
    Feb 2009
    Posts
    21
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Hi

    Hope someone here can help, have installed this mod, I also have the inc/ex vat mod installed, I initially had problem where I had a blank home page, but solved that by re establishing the inc/ex mod. I now have my main page back, but I do not have MSRP Price, you save etc. It is active in admin as I can put MSRP price in there, but not showing on product pages on site.

    It's bound to be something easy, but i cant figure it out.

    Help appreciated

  7. #177
    Join Date
    Feb 2010
    Posts
    106
    Plugin Contributions
    0

    Default Re: MSRP contrib

    I love this concept, and I want it bad,
    I am using Canada post shipping, when MSRP works, Canada post dimensions and weight don't show up in when I add a product. and when Canada post is working, MSRP disapears. Do I have gremlins?

    I NEED canada post, but want MSRP.

    Where is MSRP in Admin, can't find it anywhere to turn it on or off.

    Guy

  8. #178
    Join Date
    Feb 2010
    Posts
    106
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by Australian Caching View Post
    I love this concept, and I want it bad,
    I am using Canada post shipping, when MSRP works, Canada post dimensions and weight don't show up in when I add a product. and when Canada post is working, MSRP disapears. Do I have gremlins?

    I NEED canada post, but want MSRP.

    Where is MSRP in Admin, can't find it anywhere to turn it on or off.

    Guy
    Refreshing this one, does anyone have an answer?

  9. #179
    Join Date
    Nov 2005
    Location
    New Zealand
    Posts
    16
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by Australian Caching View Post
    I love this concept, and I want it bad,
    I am using Canada post shipping, when MSRP works, Canada post dimensions and weight don't show up in when I add a product. and when Canada post is working, MSRP disapears. Do I have gremlins?

    I NEED canada post, but want MSRP.

    Where is MSRP in Admin, can't find it anywhere to turn it on or off.

    Guy
    There are no settings in Admin for MSRP. Once applied it is always on.

  10. #180
    Join Date
    Feb 2010
    Posts
    106
    Plugin Contributions
    0

    Default Re: MSRP contrib

    Quote Originally Posted by Australian Caching View Post
    I love this concept, and I want it bad,
    I am using Canada post shipping, when MSRP works, Canada post dimensions and weight don't show up in when I add a product. and when Canada post is working, MSRP disapears. Do I have gremlins?

    I NEED canada post, but want MSRP.

    Where is MSRP in Admin, can't find it anywhere to turn it on or off.

    Guy
    Any answers to this? (I had an answer for 'where is MSRP in admin, thank you, forgot your name before I sent this)

    Has anyone got Canada Post and MSRP working together?, if I install one, it disables the other, I have to reinstall Canada Post to get it working again.

    Guy

 

 
Page 18 of 40 FirstFirst ... 8161718192028 ... 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