Results 1 to 4 of 4

Thread: Image not showing in 1.4.1

  1. #1
    Join Date
    Oct 2007
    Posts
    136

    Default Image not showing in 1.4.1

    Hello,

    I have added a custom field "afbeelding" as type IMAGE,
    and upload goes OK; after testing in the folder upload_files/ the file afbeelding_1.jpg is listed.

    Then I go to Template Manager and edit detail_link.html

    with:

    <tr>
    <td>Afbeeldingen</td>
    <td>
    <img src=<%$afbeelding%>></img>
    </td>
    </tr>

    (the table is part of the layout of the HealthLife template)

    But the image does not show on the website.

    If I look at sourcecode in the browser it shows:

    <tr>
    <td>Afbeeldingen</td>
    <td>
    <img src=upload_files/afbeelding_1.jpg></img>
    </td>
    </tr>

    Please advice how I can make the image visible on the website.

    thanks and regards,
    Wessel

  2. #2
    Join Date
    Jun 2007
    Posts
    70

    Default

    use this:
    <tr>
    <td>Afbeeldingen</td>
    <td>
    <%if $afbeelding|file_exists%><img src="http://www.xxx.com/<%afbeelding%>" /><%/if%>
    </td>
    </tr>


    will work
    change xxx.com to your site

  3. #3
    Join Date
    Oct 2007
    Posts
    136

    Default

    Hi Ekerbiz,

    Thank you so much! It works, the images show.

    Would you maybe also know how an image can be resized to a fixed size,
    in example; always show an image in detail_link.html resized to a maximum width of 300px ?

    Thanks and regards,
    Wessel

  4. #4
    Join Date
    May 2007
    Location
    NJ, United States
    Posts
    1,651

    Default

    Change it from

    <img src="http://www.xxx.com/<%afbeelding%>" />
    to

    <img src="http://www.xxx.com/<%afbeelding%>" width="300" height="xx" />
    or you could also use a lytebox javascript to change the size and appearance.
    FSGDAG | IndexU Hosting | Owner
    Website | NiceCoder Script Hosting and More! | Web4URL is For Sale!
    Follow Us On Twitter | FaceBook Profile | YouTube Videos

Similar Threads

  1. Folder image not showing
    By mainman in forum v5.x
    Replies: 1
    Last Post: 02-10-2009, 04:16 PM
  2. Help please with listing not showing up
    By Mitchell in forum INDEXU DELUXE v1.x
    Replies: 5
    Last Post: 09-15-2008, 10:19 PM
  3. showing keywords
    By tane in forum v5.x
    Replies: 3
    Last Post: 04-20-2006, 02:42 AM
  4. IP and Location are not showing up
    By Aircut in forum v5.x
    Replies: 0
    Last Post: 10-21-2004, 11:29 PM
  5. image not showing up after upload.
    By persut in forum v5.x
    Replies: 1
    Last Post: 03-03-2004, 07:11 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
  •