Guest can't see links.
OK, lately i made a little template modification that make guests register before they can see any link on the website.
Here is what you need to do to active it and use it in your Forum. Go to AdminCp>Plugin & Products > Add New Plugin then do this: Code:
Hook Location : postbit_display_complete Name : what ever you want Execution Order : 5 Plugin PHP Code : if ((!$this->registry->userinfo[userid]) OR (is_member_of($this->registry->userinfo, 1, 3))) { $this->post['message'] = preg_replace("!<a[^>]*(http|www)(.*)</a>!siU", $vbphrase[nolink], $this->post['message']); } Plugin is Active : Yes Insteand of 1,3 you can change the numbers to a diffrent groups you want. but 1 and 3 is the Default groups that not allowed to see links in posts. Worked fine to me and should work fine for you. Have Fun. Download No files for download. |