Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default add an image to a specific product page

    how do you add an image to a specific product page not all of the product pages and not by using the add image function?

    for example for a specific product under the add to cart button?

    thanks.

  2. #2
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: add an image to a specific product page

    The easiest way is to put a bit of code that looks something like this into tpl_product_info_display.php:

    Code:
    <?php if ($_GET['products_id']=='7'){echo '<div id="newimage"><img src="Path to Image"></div>';}?>
    You need to change where it says 'Path to Image' to be the path to the image. And change the number '7' to the product id of the product you want the image to display on.

    You can put it wherever you want the image to appear. If you want it under the add to cart button you will put this line just below:

    Code:
    <!--eof Add to Cart Box-->
    You may have to put a rule in the stylesheet to control its display too but I don't know because you haven't given us a URL which is always kind of useful to stop us having to guess!

    It might be something like:

    Code:
    #newimage{
    float:right;
    clear:both;
    }

  3. #3
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: add an image to a specific product page

    thank you. the code worked like a charm.

 

 

Similar Threads

  1. Replies: 7
    Last Post: 15 Jul 2013, 04:50 AM
  2. v151 How can I add a custom category-specific size-chart image to my product pages?
    By rbecq in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 1 Jul 2013, 08:07 AM
  3. v139h Add image in product page ?
    By dmagic in forum General Questions
    Replies: 3
    Last Post: 18 Feb 2013, 01:45 PM
  4. add-to-cart product specific page?
    By mariamar in forum Setting Up Categories, Products, Attributes
    Replies: 5
    Last Post: 25 Jan 2012, 10:52 PM
  5. How do I add an Article to a specific product page
    By shags38 in forum Templates, Stylesheets, Page Layout
    Replies: 10
    Last Post: 5 Oct 2011, 05:05 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