2013-12-08, 08:27 PM
2013-12-08, 10:24 PM
It is possible if you just remove the code from template. Bots know the default input names and insert the icon regardless of whether the inputs are hidden or not. Users can do the same if they're experienced with MyBB/PHP.
You will have to remove the PHP ($mybb->input etc.) for icons in editpost/newreply/newthread for it as well if you want to get rid of it completely and this may take a while.
You will have to remove the PHP ($mybb->input etc.) for icons in editpost/newreply/newthread for it as well if you want to get rid of it completely and this may take a while.
2013-12-08, 10:32 PM
Thanks D666. I have used this tutorial to remove post icons: http://community.mybb.com/thread-90769.html
Could you please tell me what code should I have to remove and from which files to completely get rid of icons?
Could you please tell me what code should I have to remove and from which files to completely get rid of icons?
2013-12-08, 10:59 PM
Find and remove {$post['icon']} from the postbit and postbit_classic templates. I'll add that to the tutorial later.
For any practical matter post icons are completely gone. But, of course, technically this just hides the icons away. The code for post icons still lies deep within MyBB and bots can set post icons, as Destroy666 explained. Pursuing that would be pointless though. Hiding all instances of post icons does the job.
For any practical matter post icons are completely gone. But, of course, technically this just hides the icons away. The code for post icons still lies deep within MyBB and bots can set post icons, as Destroy666 explained. Pursuing that would be pointless though. Hiding all instances of post icons does the job.
2013-12-09, 11:55 AM
Thanks very much @Fábio Maia