Quote:
Originally Posted by Hex_legend
Thanks for your time, but no luck for me
On the user's profile and the PMs the "Newline Setting" is still not working, so the pips are starting right after the stars and not on a new/separate line.
|
Quote:
Originally Posted by Paul M
css tricks which is just not practical for me to spend time on.
|
I have a fix for Profile and PM's
Step 1. Edit Template
custom_erd.css and replace all CSS code.
Code:
img.repimg {
margin-left: -1px;
float: none !important; /* Used for Member profile since float left is used on images */
}
img.repimg.erdstar {
padding-right: 5px;
}
img.repimg.erdpostbit {
margin-bottom: 5px;
}
img.repimg.erdmember {
margin-top: 5px;
float: none !important; /* Float left is used on images */
vertical-align: text-bottom !important; /* If you have custom images that are not the same size for pips */
}
Step 2. Go To Plugins & Products > Plugin Manager > Extended reputation display > And Edit Hook "
parse_templates"
Find this.
Code:
if (in_array(THIS_SCRIPT, array('memberlist','showthread','member')))
Replace with this.
Code:
if (in_array(THIS_SCRIPT, array('memberlist','showthread','member','private')))
Step 3. Still in Plugin Manager (Plugin System) Edit Hook "
reputation_image"
Find this.
Code:
$newline = (THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'memberlist');
Replace with this.
Code:
$newline = (THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'memberlist' OR THIS_SCRIPT == 'member' OR THIS_SCRIPT == 'private');
Now find this.
Code:
if (THIS_SCRIPT == 'showthread'
AND !$vbulletin->options['legacypostbit'])
Replace with this.
Code:
if (THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'private'
AND !$vbulletin->options['legacypostbit'])