Quote:
Originally Posted by compact123
How do I like in this picture? Last post I want to look like the picture of the message. Thank you.

|
You can make this look like the picture with minor tweaks. (only edit required is to move the <br> location). All the rest is under admincp options.
1. Inside admincp, under "Plugin & products" -> "Plugin Manager".
Edit templates "Forum Display - Template Change" & "Forum Home - Template Change":
Locate this line:
PHP Code:
$vbulletin->templatecache['forumhome_lastpostby'] = "<div align='left'><table width='100%'><tr><td align='left' width='40'>\$GLOBALS[alt_lp_avatar_img]</td><td align='left' NOWRAP><a href='\$GLOBALS[alt_lp_last_post_link]'>\$GLOBALS[alt_lp_last_post_title]</a> $vbphrase[alt_lp_by] <a href='\$GLOBALS[alt_lp_last_poster_profle_link]'>\$GLOBALS[alt_lp_last_poster]</a><br>\$GLOBALS[alt_lp_last_post_time_ago]</td></tr></table></div>";
and replace with this line:
PHP Code:
$vbulletin->templatecache['forumhome_lastpostby'] = "<div align='left'><table width='100%'><tr><td align='left' width='40'>\$GLOBALS[alt_lp_avatar_img]</td><td align='left' NOWRAP><a href='\$GLOBALS[alt_lp_last_post_link]'>\$GLOBALS[alt_lp_last_post_title]</a><br>$vbphrase[alt_lp_by] <a href='\$GLOBALS[alt_lp_last_poster_profle_link]'>\$GLOBALS[alt_lp_last_poster]</a> \$GLOBALS[alt_lp_last_post_time_ago]</td></tr></table></div>";
2. Inside admincp go to "Vbulletin Options" -> "Vbulletin Options", edit the "Alternate Last Post Display" options, and set the "Show differential time ?" option to NO.
3. Adjust the date/time string on vbulletin "Date and Time Options" as you please.
regards.