Quote:
Originally Posted by Disasterpiece
Hi
First, go to Admincp > Plugins, deactivate the plugin "add steam profile" in hook "postbit_display_start".
Then you navigate to Styles > Templates > Postbit > postbit/postbit_legacy (depends on what you're using)
Find:
HTML Code:
<!-- / attachments -->
</vb:if>
Below, add:
HTML Code:
<div class="steamprofile" title="{vb:raw post.steamid}"></div>
That's it!
|
Tried this, and although it works, I wasn't happy with the results since it also shows the block for users who haven't linked their Steam account. But there's a much easier method.
Go into the "add steam profile" plugin hook, and for the PHP code simply change:
PHP Code:
if ($steam_id = get_user_steamid($user_info))
$template_hook['postbit_messagearea_start'] .= '<div class="steamprofile" title="'.$steam_id.'"></div>';
To this:
PHP Code:
if ($steam_id = get_user_steamid($user_info))
$template_hook['postbit_userinfo_right'] .= '</div><div class="steamprofile" title="'.$steam_id.'"></div><div>';
Notice the extra DIV tags in the replacement code. This places the block directly under the Join Date/Location/Post Count part of the Userinfo section in the postbit. Your mileage may vary if using postbit_legacy as I don't use that.
Oh yeah, and awesome mod. Thanks!