showing pictures as thumbnails in forums for lavalair

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    showing pictures as thumbnails in forums for lavalair

    friends , anyideas abt how to make available only uploading pictures or image files in a lavalair forum which would b visible as thumbnail not as attachment. Along with the topic

    #2
    its been done, i think one of my scripts here got it in...

    Just edit uploader to add image bbcode to post text...
    C3 Themes: http://c3themes.wen.ru/index.html
    Find Files: http://mystarter.tk/?goto=X-search

    Comment


      #3
      Originally posted by pmbguy View Post
      its been done, i think one of my scripts here got it in...

      Just edit uploader to add image bbcode to post text...
      no bro its not here i searched here . centi had posted in his forum topic but it attaches the pic as attachment not as thumbnail

      Comment


        #4
        add this to action=viewtpc

        Code:
        $avatar = getavatar($uid);
         if ($avatar=="")
        { 
        echo"<img src=\"../images/default.gif\" width=\"60\" height=\"60\" alt=\"avatar\"/>";
        }else{
        echo"<img src=\"$avatar\" width=\"60\" height=\"60\" alt=\"avatar\"/>";
        }
        Wapchat4u


        Topsites4u

        Comment


          #5
          Originally posted by nclemale36 View Post
          add this to action=viewtpc

          Code:
          $avatar = getavatar($uid);
           if ($avatar=="")
          { 
          echo"<img src=\"../images/default.gif\" width=\"60\" height=\"60\" alt=\"avatar\"/>";
          }else{
          echo"<img src=\"$avatar\" width=\"60\" height=\"60\" alt=\"avatar\"/>";
          }
          hey bro i dnt want to add avatar , but i want to be able to post pictures along with text in images , but tht pic shud b shown as thumbnail

          Comment

          Working...
          X