PDA

View Full Version : Problem with postbit template hook


vbandroid
06-08-2011, 03:18 AM
Hi, i was using this guide to add a custom profile field to my postbit by using the template's postbit legacy hook. However, i can't seem to get the profile field to show up in the post bit. Can anyone help.

http://www.vbulletin.com/forum/showthread.php/362345-Using-your-User-Profile-Fields-in-your-postbit-templates. My custom profile field is called devices.

I've checked my custom themes postbit_legacy template to make sure their was a hook already their, code is below.

<vb:if condition="$post['joindate']"><div class="post_field"><dt>{vb:rawphrase join_date}</dt> <dd>{vb:raw post.joindate}</dd></div></vb:if>
<vb:if condition="$post['field2']"><div class="post_field"><dt>{vb:rawphrase location_perm}</dt> <dd>{vb:raw post.field2}</dd></div></vb:if>
<vb:if condition="$post['age']"><div class="post_field"><dt>{vb:rawphrase age}</dt> <dd>{vb:raw post.age}</dd></div></vb:if>
<div class="post_field"><dt>{vb:rawphrase 'posts'}</dt> <dd>{vb:raw post.posts}</dd></div>
{vb:raw template_hook.postbit_userinfo_right_after_posts}
</dl>

I created a plugin with these settings

Product: Vbulletin
Hook location: Postbit_display_complete
PHP Code
if ($post['Devices'])
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<dt>Devices</dt> <dd>' .$post[Devices]. '</dd>';
}

Any help would be greatly appreciated.

--------------- Added 1307510358 at 1307510358 ---------------

Nevermind i firgured it out. For anyone else who gets stuck on this, then here is what you do. Go to your user profile field manager. Their you will see a list and i think 4th column down is profile name. It will be field1, field2, field3, etc. Should have used that, so in my case the code should have been.

if ($post['field5'])
{
$template_hook['postbit_userinfo_right_after_posts'] .= '<dt>Devices</dt> <dd>' .$post[field5]. '</dd>';
}