MyBB Community Forums

Full Version: Setting a default post icon?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello; by default MyBB sets the post icon to nothing: is there a way to set it to the first post icon in the list? Thanks!
Not by default. You would need some sort of modification to do that.
hello there,
open ./newthread.php

find

 else
	{
		$newthread = array(
above $newthread = array( add

if($mybb->input['icon'] == "")
		{
		$mybb->input['icon'] = 3;
		} 

change 3 to the post icon ID of the one you want. You can get the ID from the post icon manager in the Admin CP by hovering over the link and check the iid.
regards
Thanks! Smile