Author Topic: how to remove reqirement for thumbnail images  (Read 2978 times)

0 Members and 1 Guest are viewing this topic.

Offline darkspice

  • Pre-Newbie
  • Posts: 2
    • View Profile
how to remove reqirement for thumbnail images
« on: May 08, 2007, 06:59:00 PM »
I would like to be able to remove the req to create/upload a thubnail image and just have the main image to show where the thumb normally shows in gallery, I am working with images of total size of 150 x 150 pixels

Offline jamstave

  • Newbie
  • *
  • Posts: 49
    • View Profile
Re: how to remove reqirement for thumbnail images
« Reply #1 on: May 18, 2007, 06:09:48 PM »
Open :
templates/your_template/member_uploadform.html

Find this code and delete.

Quote
          <tr>
            <td class="row1" valign="top">
           <b>{lang_thumb_file}</b><br />
           <span class="smalltext">
           {lang_max_filesize}<b>{max_thumb_filsize}</b><br />
           {lang_max_imagewidth}<b>{max_thumb_imagewidth}</b><br />
           {lang_max_imageheight}<b>{max_thumb_imageheight}</b><br />
           </span>
         </td>
            <td class="row1">
              <b>Upload:</b><br />
           <input type="file" name="thumb_file" class="input" size="20" /><br />
           <b>URL:</b><br />
           <input type="text" name="remote_thumb_file"  size="30" value="{remote_thumb_file}" class="input" /><br />
           <span class="smalltext"><b>{lang_allowed_file_types}</b> {allowed_thumb_types}</span>
            </td>
          </tr>