Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Specials Module with Added Words

    Hi, I didn't find this since is difficult to search for it.

    How and where do I add the words "Reg." and "Special" before the correspondent prices.

    Note: I need to use languages files since the store runs 2 languages.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  2. #2
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Specials Module with Added Words

    Must be something you've added to your site. Out-of-the-box, Zen Cart doesn't use prefixes of "Reg." and "Special".
    ie: http://www.zen-cart.net/index.php?main_page=specials

    Perhaps doing a search for "Reg." would give you clues to where you've put that string in your files.
    http://www.zen-cart.com/content.php?...-files-to-edit
    http://www.zen-cart.com/content.php?...lopers-toolkit
    .

    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.

  3. #3
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: Specials Module with Added Words

    Yes, I tried the developer's kit but the only file I found, when I did some changes, didn't add anything on frontend (it was the function_price file). I also checked the module template, and the module files, nothing.

    And it's not that I added it... I WANT TO add it.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  4. #4
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Specials Module with Added Words

    Quote Originally Posted by ideasgirl View Post
    And it's not that I added it... I WANT TO add it.
    Oops. I totally misread that! I need to go to bed
    .

    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.

  5. #5
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Specials Module with Added Words

    Do you perhaps have a link to your site where you want to change of Reg. and Special in front of the prices ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #6
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: Specials Module with Added Words

    Sure, I can give it to you but I want to do this adjustment in few stores, not only this one:
    Code:
    dmodafashion.com
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  7. #7
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Specials Module with Added Words

    So looking at this product:
    /index.php?main_page=product_info&cPath=7_16&products_id=172

    you want the Price to read:
    Reg. $19.99 Special $15.99
    Ahorre: 20% descuento
    correct?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  8. #8
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: Specials Module with Added Words

    Right! Or anything else for that matter...
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  9. #9
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Specials Module with Added Words

    If you add this code around line 261 above:
    Code:
        if ($display_normal_price == 0) {
          // don't show the $0.00
    Code:
    if ($show_special_price != '' || $show_sale_price != '') {
      $show_special_price = 'Special' . $show_special_price;
      $show_normal_price = 'Reg.' . $show_normal_price;
    }
    does this come close to what you are trying to accomplish?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  10. #10
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: Specials Module with Added Words

    That's correct mam!

    Can this be done with the proper code to have the languages files and the css styling?
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Display Product Price after Specials Added
    By AlexSC in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 20 Jul 2016, 11:49 AM
  2. Replies: 1
    Last Post: 23 Jun 2013, 01:59 AM
  3. Specials are not working when product added to cart after installing addons
    By briarproof in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 5 Jan 2012, 05:52 PM
  4. Added new product and extra images were added with it? (not wanted)
    By bakdoor in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 2 Nov 2008, 10:31 AM

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