To accomplish this, open the .xml file and find the line:
foreach($vbulletin->repsettings AS $replevel) {
At the end of this foreach statement, you'll find this line:
eval('$post[\'reputationdisplay\'] .= "' . fetch_template('postbit_pig_reputation') . '";');
Change this line to:
eval('$post[\'reputationdisplay\'] = "' . fetch_template('postbit_pig_reputation') . '";');
This will modify this hack to use individual images instead of multiple images.
|