Results 1 to 2 of 2

Thread: image displayed instead of text

  1. #1
    jamieacutt is offline Registered User
    Join Date
    Jan 2010
    Posts
    2

    Question image displayed instead of text

    I am currently developing a new element for my site, but have reached a bit of a dead-end.

    I have created a custom link select box ($weapons_taught) using the options:

    1|short staff
    2|long pole
    3|sword
    4|halberd

    etc...but on the detail_link.html page I wanted to display images of these weapons instead of the words (because some people might not know what a shinai is etc, but will recognise it by sight). I started by thinking I could integrate it with the smarty tags, using:

    <%if $weapons_taught == 1 %> <img src=".../images/weapons/short_staff.jpg" /> <%/if%>
    <%if $weapons_taught == 2 %> <img src=".../images/weapons/long_pole.jpg" /> <%/if%>
    <%if $weapons_taught == 3 %> <img src=".../images/weapons/sword.jpg" /> <%/if%>

    etc...But this did not work. Is there any simple code I could add to the detail_link.html page to display an image instead of the text value?

    P.S, it's a martial arts website...
    Last edited by jamieacutt; 02-03-2010 at 01:44 PM.

  2. #2
    jamieacutt is offline Registered User
    Join Date
    Jan 2010
    Posts
    2

    Default solution

    The answer was staring me in the face.

    Just for anyone else who might need to replace information for images (or anything else) use this code:

    <%if ($weapons_taught == "short staff") %>
    <img src=".../images/weapons/short_staff.jpg" />
    <%/if%>

    <%if ($weapons_taught == "long pole") %>
    <img src=".../images/weapons/long_pole.jpg" />
    <%/if%>

    <%if ($weapons_taught == "sword") %>
    <img src=".../images/weapons/sword.jpg" />
    <%/if%>


    Hope this will be of use to someone....

Similar Threads

  1. folder.gif is not displayed
    By icesoul in forum INDEXU DELUXE v1.x
    Replies: 13
    Last Post: 08-27-2008, 04:26 AM
  2. Category folder image above text
    By ozrace in forum v5.x
    Replies: 2
    Last Post: 08-08-2006, 02:06 AM
  3. How Are the links Displayed???
    By lordkinjo in forum v5.x
    Replies: 2
    Last Post: 06-21-2003, 07:06 PM
  4. How Do I Add Text by Image Link
    By lordkinjo in forum v5.x
    Replies: 1
    Last Post: 06-04-2003, 09:40 AM
  5. Add new image or text to categories
    By Che Guevara in forum v3.2
    Replies: 0
    Last Post: 09-01-2001, 11:52 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
  •