ignored in forum (lava/wapdesire)

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

    ignored in forum (lava/wapdesire)

    hi, who has a code to hide topics/posts in
    lava/wapdesire forum
    for users in ignored list?
    thanks
    sigpicthe italian/international COMMUNITY of friendship
    http://people2000.netne.net
    WAP/WEB
    peoplemailbox@katamail.com

    #2
    in the future when you ask for code..
    post thread in proper forum..
    else it'll get trashed...
    It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
    ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
    ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
    キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

    Comment


      #3
      ok..sorry i did wrong
      sigpicthe italian/international COMMUNITY of friendship
      http://people2000.netne.net
      WAP/WEB
      peoplemailbox@katamail.com

      Comment


        #4
        why not try coding it yourself :P then if you get stuck you can post it here :P
        i would code it myself but im to lazy to search for lava script on my computer lol .... and hey you learn more if you try coding it yourself :P

        Comment


          #5
          i started this topic 'cause i've been trying to do it by myself but
          it's too hard for me..
          i thought to use the code in chat.php page that hides messages for
          users in ignored list
          Code:
          if(isignored($chat[0],$uid)){
                            $canc = false;
                          }
          but i don't know how to modify for topics/posts..
          sigpicthe italian/international COMMUNITY of friendship
          http://people2000.netne.net
          WAP/WEB
          peoplemailbox@katamail.com

          Comment


            #6
            i cant remember the array order of lava topic/post mysql querry
            so at a guess it would be something like
            PHP Code:
            if(isignored($post[1],$uid){
            $post[0] = "You are not allowed to see this post";

            your probably have to change the 0 and 1 as there probably incorrect order

            Comment


              #7
              a little error
              right code is
              Code:
              if(isignored($post[1],$uid))
              {
              $post[0] = "You are not allowed to see this post";
              }
              i tried changing numbers but it don't works
              sigpicthe italian/international COMMUNITY of friendship
              http://people2000.netne.net
              WAP/WEB
              peoplemailbox@katamail.com

              Comment

              Working...
              X