MyBB Community Forums

Full Version: [HELP] how to bring up the avatar on showthread title and Thread started by
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
anyone can help me solve the problem? how to bring up the avatar on showthread title and Thread started by (the name of the thread maker).
I've solved the problem of how to make date and time on showthread title.
by adding the following code at the root/showthread.php above code eval ("\ $ showthread = \" ". $ templates-> get ('showthread"). "\"; ");

$threaddate = my_date($mybb->settings['dateformat'], $thread['dateline']);
 $threadtime = my_date($mybb->settings['timeformat'], $thread['dateline']);

[Image: aHR0cDovL2ltZzU3Ny5pbWFnZXNoYWNrLnVzL2lt...RtajcucG5n]

Go into your Template "showthread" and add this on the area that you wanna show the date/time on it
{$threaddate} at {$threadtime}

so how to display the avatar maker of threads, and Thread started by (the name of the thread maker)????????

[Image: cusdZoJ.png]
(2016-01-05, 12:59 PM)Graham K Wrote: [ -> ]You could try looking at these links:

1: http://community.mybb.com/thread-114472.html
2: http://letsforum.com/Thread-Display-Avat...ke-XenForo
3: http://mods.mybb.com/view/last-poster-av...threadlist

that's not what I mean sir, this showthread. if I could just use the plugin. I need bring avatars in showthread title.


this showthread:

[Image: naz4XpO.png?1]
Select the users table where $thread['uid'], then you can use

get_user()

function.
(2016-01-05, 04:23 PM)Sazze Wrote: [ -> ]Select the users table where $thread['uid'], then you can use

get_user()

function.


Can you make a tutorial how to bring up the avatar on showthread title and Thread started by?