Author Topic: Not showing image when upload has finished - Successful page  (Read 3028 times)

0 Members and 1 Guest are viewing this topic.

Offline VonHerzen

  • Newbie
  • *
  • Posts: 42
    • View Profile
Not showing image when upload has finished - Successful page
« on: August 02, 2008, 07:18:58 PM »

Hi all,  somebody could help me?

After uploading an image, there is a page saying "your image has been added" or "Your image is pending to be validated" and it shows the image you have just uploaded. How can I do for not showing the image anymore here. I just want only to appear the upload-successful text.

Thanks and regards!

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Re: Not showing image when upload has finished - Successful page
« Reply #1 on: August 02, 2008, 08:04:15 PM »
in member.php find:
Code: [Select]
      $content .= "<table border=\"0\" align=\"center\">\n<tr>\n<td>\n".$media."\n</td>\n</tr>\n</table>\n";
replace it with:
Code: [Select]
//      $content .= "<table border=\"0\" align=\"center\">\n<tr>\n<td>\n".$media."\n</td>\n</tr>\n</table>\n";
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline VonHerzen

  • Newbie
  • *
  • Posts: 42
    • View Profile
Re: Not showing image when upload has finished - Successful page
« Reply #2 on: August 02, 2008, 09:03:28 PM »

Perfect! It works!  Thanks a lot V@ano!