Page 1 of 3 123 LastLast
Results 1 to 10 of 25
  1. #1
    Join Date
    Aug 2008
    Posts
    274
    Plugin Contributions
    0

    Default MSRP Display edit

    Hello,

    I installed the MSRP Display module and it works great. Issue is my client wants to change some aspects and I can figure out how.

    For example on this page

    http://ie-proofs.com/domo-online.com...6gal-p-12.html

    1)They want to remove the "strike through" from the price. So that it is still on the the "retail" price but not on the words "Retail Price"

    2) Also they want to remove the entire line that says "you save"...Any thoughts on this??

    3) lastly, they want me to make the line "Our Price" HUGE. I tried to do this but it also made all the other text in that area much longer

    any help would be greatly appreciated

    thanks

  2. #2
    Join Date
    Feb 2005
    Location
    Lansing, Michigan USA
    Posts
    20,021
    Plugin Contributions
    3

    Default Re: MSRP Display edit

    1) You'll have to search the files from the mod (using the Developers Tool Kit) for smalltext1 and remove the <s> and </s> tags.

    2) .save {display: none;}

    3) Add to the stylesheet (or change the existing element in the .norm rule if you can find it) .norm {font-size: 2em;}

  3. #3
    Join Date
    Aug 2008
    Posts
    274
    Plugin Contributions
    0

    Default Re: MSRP Display edit

    awesome, thank you very much.

    One last thing, it's not a big deal if it is too hard. They would prefer to have the "original price" marked out (with a line through it) but have "Retail price" without a line through it.

    I looked at the functions page and removed the <s> and see where the function is calling the string but I don't think it is easy to make it so that the "Retail Price" is normal but the price has a slash through, is that true?

    thank you

  4. #4
    Join Date
    Aug 2008
    Posts
    274
    Plugin Contributions
    0

    Default Re: MSRP Display edit

    Hello again,

    Sorry have a problem now. When I changed the font size of the "norm" in the stylesheet it changed the price everywhere on the site, see here
    http://ie-proofs.com/domo-online.com...6gal-p-12.html

    how can I change the font size so it ONLY affects the product detail page?

    thank you

  5. #5
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: MSRP Display edit

    Use the developers tool kit and search for the term "Our Price:"
    Depending where you find it you may have to style inline
    Zen-Venom Get Bitten

  6. #6
    Join Date
    Aug 2008
    Posts
    274
    Plugin Contributions
    0

    Default Re: MSRP Display edit

    Thanks, I'm located the line of code that produces the price on the products detail page. Figure it would be easier if I could style it there, then I could leave the others as they were.

    Here is the line of code I believe is producing the price on this page (our price 79.99 in the middle of the page)http://ie-proofs.com/domo-online.com...6gal-p-12.html

    How can I style this different, not sure where to do it since this isnt' standard code.

    HTML Code:
    <?php
    // base price
      if ($show_onetime_charges_description == 'true') {
        $one_time = '<span>' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
      } else {
        $one_time = '';
      }
      echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
    ?>

  7. #7
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: MSRP Display edit

    You have not located what file/code that "Our Price:" exists in
    Zen-Venom Get Bitten

  8. #8
    Join Date
    Aug 2008
    Posts
    274
    Plugin Contributions
    0

    Default Re: MSRP Display edit

    It is the msrp.php file. It is just this in it though

    define('TEXT_PRODUCT_MSRP', 'Retail Price: ');
    define('TEXT_PRODUCT_SAVE', 'You save: ');
    define('TEXT_PRODUCT_OUR', 'Our Price: ');

  9. #9
    Join Date
    Aug 2008
    Posts
    274
    Plugin Contributions
    0

    Default Re: MSRP Display edit

    Our price is displayed in multiple locations though, in the sidebar, etc. Really just need to change it in the center column

    thanks

  10. #10
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: MSRP Display edit

    Try
    Code:
    define('TEXT_PRODUCT_OUR', '<h2>Our Price: </h2>');
    Zen-Venom Get Bitten

 

 
Page 1 of 3 123 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. v151 Problem installing MSRP display
    By SilverHD in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 17 Oct 2017, 04:06 AM
  3. Dual Pricing 2 and New MSRP Display together?
    By jfelix in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 15 Nov 2012, 05:32 PM
  4. MSRP Display Mod / phpMyAdmin edit problem
    By rdcast in forum All Other Contributions/Addons
    Replies: 7
    Last Post: 10 Sep 2011, 09:11 PM
  5. Msrp display issue
    By CRYSTALDOLL in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 10 Aug 2009, 02:40 PM

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