Janmaat Active member Sep 11, 2013 #1 How can I prevent users from showing images in posts by using the code? I only want users to show images by uploading to the forum. I was used to disable this code in my old vB forum. But I failed how to disable it in xF.
How can I prevent users from showing images in posts by using the code? I only want users to show images by uploading to the forum. I was used to disable this code in my old vB forum. But I failed how to disable it in xF.
Jeremy in memoriam 1991-2020 Sep 11, 2013 #2 If you follow my guide for adding BB Codes, you'll be able just remove it: http://xenforo.com/community/thread...b-code-in-xenforo-a-comprehensive-guide.6320/ Stop after Step 5 and just use this code instead of adding one in step 6: PHP: unset($this->_tags['img']); return $this->_tags; Upvote 0 Downvote
If you follow my guide for adding BB Codes, you'll be able just remove it: http://xenforo.com/community/thread...b-code-in-xenforo-a-comprehensive-guide.6320/ Stop after Step 5 and just use this code instead of adding one in step 6: PHP: unset($this->_tags['img']); return $this->_tags;
AndyB Well-known member Sep 11, 2013 #3 Janmaat said: How can I prevent users from showing images in posts by using the code? I only want users to show images by uploading to the forum. I was used to disable this code in my old vB forum. But I failed how to disable it in xF. Click to expand... A better option is to allow your members to use the [ img ] tag, but convert them to attachments when they submit the post. Use this addon. http://xenforo.com/community/resources/metamirror.2117/ Upvote 0 Downvote
Janmaat said: How can I prevent users from showing images in posts by using the code? I only want users to show images by uploading to the forum. I was used to disable this code in my old vB forum. But I failed how to disable it in xF. Click to expand... A better option is to allow your members to use the [ img ] tag, but convert them to attachments when they submit the post. Use this addon. http://xenforo.com/community/resources/metamirror.2117/