MyBB Community Forums

Full Version: Set Default Post Icon
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to make it so when a member doesn't select a Post Icon a default Image will appear. Is this possible?
/inc/datahandlers/post.php

Find,

$plugins->run_hooks_by_ref("datahandler_post_insert_thread", $this);

Change to,

if(!$thread['icon'])
            {
                $this->thread_insert_data['icon'] = 6; // icon id
            }

            $plugins->run_hooks_by_ref("datahandler_post_insert_thread", $this); 

Change the icon id to suit your preference.
(2010-10-24, 05:40 PM)iBf Wrote: [ -> ]/inc/datahandlers/post.php

Find,

$plugins->run_hooks_by_ref("datahandler_post_insert_thread", $this);

Change to,

if(!$thread['icon'])
            {
                $this->thread_insert_data['icon'] = 6; // icon id
            }

            $plugins->run_hooks_by_ref("datahandler_post_insert_thread", $this); 

Change the icon id to suit your preference.

This code is in the post.php file twice, which do I replace?