Removing negative Votes from Profile Statistics in phpBB3
3 posters
Page 1 of 1
Removing negative Votes from Profile Statistics in phpBB3
The title says it all. Is there a way to do this? I have a poetry forum and don't feel this is constructive. I have followed this tutorial: https://help.forumotion.com/t84472-tuesday-tip-reputation-system-only-allow-positive-votes so there will be no more negative voting, but I need to clean up a poet's personal statistics . . .

Thanks for your help,
Bpoetic

Thanks for your help,
Bpoetic
Last edited by Bpoetic on March 13th 2012, 6:21 am; edited 1 time in total
Re: Removing negative Votes from Profile Statistics in phpBB3
Try this in JS management:
- Code:
if(/\/u\d+/.test(window.location.href)){
$(function(){
var lis = document.getElementById('cp-main').getElementsByTagName('li');
for(var i=lis.length-1;i>0;i--){
if(lis[i].firstChild.innerHTML == 'Negative votes received :') {
lis[i].parentNode.removeChild(lis[i]);
}
if(lis[i].firstChild.innerHTML == 'Negative votes given :') {
lis[i].parentNode.removeChild(lis[i]);
}
}
});
}
LGforum- Hyperactive
-
Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: Removing negative Votes from Profile Statistics in phpBB3
Thank you LGforum! But . . . didn't work:-) Thanks for trying though!
Re: Removing negative Votes from Profile Statistics in phpBB3
I've edited the code, give it another try, make sure to tick, 'In all pages'
LGforum- Hyperactive
-
Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: Removing negative Votes from Profile Statistics in phpBB3
Okay, I tried. The first couple times I submitted, I realized "Enable Javascript code management" wasn't saving to yes. It is now, but the code is not working.
Thanks again LG!

Thanks again LG!
Re: Removing negative Votes from Profile Statistics in phpBB3
Can I take a quick look at your forum, there may be other errors preventing it from working.
LGforum- Hyperactive
-
Posts : 2265
Reputation : 264
Language : English
Location : UK
Re: Removing negative Votes from Profile Statistics in phpBB3
I'll give that code a try LG. I'll let you know if it works for me.

» Removing Who Is Online & Statistics text?
» Remove negative votes
» New Statistics Phpbb3
» How to turn statistics into tabs phpbb3?
» Script Needed For Removing Statistics
» Remove negative votes
» New Statistics Phpbb3
» How to turn statistics into tabs phpbb3?
» Script Needed For Removing Statistics
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum