Did you follow all of the directions?
1. In /clientscript/vbulletin_global.js,
Find:
Code:
/**
* Opens a window to show a list of posters in a thread (misc.php?do=whoposted)
Before, Add:
Code:
/**
* Opens the reputation window
*
* @param integer Post ID
*
* @return boolean false;
*/
function reputation(postid)
{
return openWindow(
'reputation.php?' + SESSIONURL + 'p=' + postid,
400, 241, 'Reputation'
);
}
2. In template
postbit or
postbit_legacy, find:
Code:
<if condition="$show['reputationlink']"><a href="reputation.php?$session[sessionurl]p=$post[postid]" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a></if>
Replace with:
Code:
<if condition="$show['reputationlink']"><a href="#" onclick="reputation($post[postid]); return false;"><img class="inlineimg" src="$stylevar[imgdir_button]/reputation.gif" border="0" alt="<phrase 1="$post[username]">$vbphrase[add_to_xs_reputation]</phrase>" /></a></if>
3. Replace the following templates with the
above posted templates:
1. reputation
2. reputationbit
3. reputation_yourpost
As for window size- It looks to me as being determined by this phrase, added into vbulletin_global.js,
PHP Code:
{
return openWindow(
'reputation.php?' + SESSIONURL + 'p=' + postid,
400, 241, 'Reputation'
);
Change the numbers to whatever dimensions you like, and it should change the size of the window.