Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2005
    Posts
    157
    Plugin Contributions
    0

    Default how to add product image to the template header

    I want to show the product(shopping cart items) images on header of my site. I find that

    $productArray[$i]["productsImage"]

    can display the images, however, it comes with the width/height of the photo, how to get the product images url only....

  2. #2
    Join Date
    May 2005
    Location
    Bath, Somerset
    Posts
    1,053
    Plugin Contributions
    3

    Default Re: how to add product image to the template header

    The easest way is to create your own array, using an SQL query. You can then decide if you want specific products, or a random selection drawn from the database.

    You just need to obtain the products_image variable from the products table within the database.

    Code:
    $header_products_rs = $db->Execute("select p.products_image, pd.products_name from ".TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_DESCRIPTION." pd where p.products_id = pd.products_id and pd.language_id = '".(int)$_SESSION['languages_id']."' order by rand() limit 1");
    echo zen_image(DIR_WS_IMAGES.$header_products_rs->fields['products_image'], $header_products_rs->fields['products_name']);
    Please note that this code has not been tested, and is meant only as a pointer in the right direction.

    Absolute
    Back, after a 4 year absence! Did you miss me?
    Absolute Web Solutions Ltd
    Interested in our work? Take a look at one of our sites - The Tech Store

 

 

Similar Threads

  1. how to align the product title, price and add to cart box next to the product image?
    By evaky in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 5 Mar 2012, 03:31 AM
  2. How to add an image to the header?
    By rrzc in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 9 Jun 2010, 11:06 AM
  3. How to add a background image to the header?
    By Twaddle in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 14 Jan 2010, 01:10 PM
  4. How do I remove the border around the add to cart image on the product page?
    By AllegraGatto in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 9 Nov 2008, 02:45 AM
  5. how to add header image to upcoming product
    By modchipfitters.co.uk in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 8 Oct 2006, 10:19 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