Quote:
Originally Posted by kushal
Can you detail how to put the rss in postbit?
|
Hook Location = postbit_display_complete
PHP Code:
global $vbulletin;
if ($vbulletin->options['memberrssfeed'])
{
$template_hook['postbit_userinfo_right'] = ' <a href="'.$vbulletin->options['bburl'].'/rssmember.php?id='.$post['userid'].'"><img class="inlineimg" src="images/misc/i-rss.gif" alt="'.unhtmlspecialchars($post['username']).' RSS Feed" border="0" /></a>';
$template_hook['postbit_user_popup'] = '<tr><td class="vbmenu_option"><a href="'.$vbulletin->options['bburl'].'/rssmember.php?id='.$post['userid'].'">'.unhtmlspecialchars($post['username']).' RSS Feed</a>';
}