Results 1 to 3 of 3

Thread: Showing image field in listing and detail page

  1. #1
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,732

    Default Showing image field in listing and detail page

    Images and other custom fields are not displayed automatically in listing and detail page. You must change the template.

    The listing template is rows.html
    And the detail page template is detail_link.html

    You must add the following code format to display them
    Code:
    <%$custom_field_name%>
    For example you have custom field, named mobile_phone. Then use the following code:
    Code:
    <%$mobile_phone%>

    There is special case for image custom field. To show the image, you must include <img> html code like below, for this example the custom field name is photo:
    Code:
    <img src="<%$photo%>">

  2. #2
    Join Date
    Feb 2007
    Posts
    36

    Default

    Just what I was looking for, Dody, but some additional information requested...

    I want to add the custom field <img src="<%$logo%>"> to the detail page for a company but only for premium and sponsored listings. I've successfully added it for the sponsored_rows.html and premium_rows.html but I'm not quite sure about the "if" and "or if" statements for IndexU so I can add it to the detail_link.html.

    TIA.

  3. #3
    Join Date
    Aug 2001
    Location
    Indonesia
    Posts
    3,732

    Default

    Yes, you can use the same if statement.

    Code:
    <%if $sponsored%>
      .....
    <%elseif $premium%>
      ......
    <%else%>
    <%/if%>

Similar Threads

  1. Custom field not showing up in link detail page
    By clkweb in forum INDEXU DELUXE v1.x
    Replies: 1
    Last Post: 11-22-2009, 09:27 PM
  2. Image not showing in 1.4.1
    By weswa in forum INDEXU DELUXE v1.x
    Replies: 3
    Last Post: 10-15-2009, 08:35 PM
  3. Replies: 0
    Last Post: 03-07-2006, 12:50 PM
  4. image not showing up after upload.
    By persut in forum v5.x
    Replies: 1
    Last Post: 03-03-2004, 07:11 PM
  5. links showing but no detail page follows
    By janewest in forum v5.x
    Replies: 3
    Last Post: 07-02-2003, 07:31 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
  •