Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2007
    Posts
    99
    Plugin Contributions
    0

    Default Conditionally changing some text based on product ID...

    Hi, let's say I want to conditionally change some text in english.php depending on the product ID. For example, let's say that for most products, the "Add to Cart" text is fine, but for two products (product ID's 13 and 16) I'd want it to say "Enter months of service". Here's the line from english.php...

    define('PRODUCTS_ORDER_QTY_TEXT','Add to Cart: ');

    How would I construct my code to make the line above conditional on product ID? I'm not too clear on the syntax. Thanks!

  2. #2
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Conditionally changing some text based on product ID...

    Changing the define in english.php would probably not be practical.

    What would be practical is to make another define in english.php:

    define('PRODUCTS_ORDER_QTY_TEXT_ALT','Enter months of service');

    and use an if test to determine which one to use for input. Depending on the exact circumstances of use, you might need to set a variable like $qty_text_specific to the proper constant value just before use, and substitute the variable for the constant in PHP statements.

    You can use the Developers Toolkit in admin > Tools to find all files where PRODUCTS_ORDER_QTY_TEXT is used.

 

 

Similar Threads

  1. Changing Text Based On Whether Shopping Cart Is Empty
    By alexwoolfson in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 12 Nov 2008, 04:12 AM
  2. Conditionally free product?
    By hedera in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 6 Feb 2008, 02:04 AM
  3. Changing some text...
    By john9 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 25 Feb 2007, 07:11 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