Remove Negative Votes From Statistics
2 posters
Page 1 of 1
Remove Negative Votes From Statistics
Hi,
I wish to remove the "Negative votes" located In the Statistics Tab of the user profile. This applies to both "Negative votes received" & "Negative votes given".
I have Implemented a Likes functionality, whereby the Negative feature Is not enabled In posts.
I read this topic, and I put this code in CSS
but Negative votes is still there... I tried and with @Ange Tuteur script:
but... nothing change...
phpBB3.
Thanks In advance for all help given.
I wish to remove the "Negative votes" located In the Statistics Tab of the user profile. This applies to both "Negative votes received" & "Negative votes given".
I have Implemented a Likes functionality, whereby the Negative feature Is not enabled In posts.
I read this topic, and I put this code in CSS
- Code:
/* removal of profile stats */
.stats-field:first-child li:nth-child(3), /* negative votes */
.stats-field:first-child li:nth-child(6), /* negative votes given */
.stats-field:first-child li:nth-child(7) /* thanks given */
{
display:none;
}
but Negative votes is still there... I tried and with @Ange Tuteur script:
- Code:
/\/u\d+stats/.test(window.location.pathname) && $(function() { $('.stats-field.genmed li:contains(Negative votes)').remove() });
but... nothing change...
phpBB3.
Thanks In advance for all help given.
Last edited by smejker on June 26th 2017, 9:23 pm; edited 1 time in total
smejker- Forumember
- Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian
Re: Remove Negative Votes From Statistics
Here is it:
- Code:
http://yugo.forum.st/
smejker- Forumember
- Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian
Re: Remove Negative Votes From Statistics
Nothing...???
smejker- Forumember
- Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian
Re: Remove Negative Votes From Statistics
Hi,
Add this JS code with placement on all pages:
Add this JS code with placement on all pages:
- Code:
$(function(){
if(!/u\d+stats/.test(window.location.pathname)) return;
var elem=$("li:contains('Negative votes')");
elem.remove();
});
Guest- Guest
smejker- Forumember
- Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian
Re: Remove Negative Votes From Statistics
My code is working as it should(tested in the console):
The problem is that you have an error in one of your javascripts that prevents my code or any other code from working. It has to do with the toolbar from what I can see. You should remove that code and my code should work. If you can't find it, pm me an account with administrator(not necessary founder) access so that I can solve the issue for you.
The problem is that you have an error in one of your javascripts that prevents my code or any other code from working. It has to do with the toolbar from what I can see. You should remove that code and my code should work. If you can't find it, pm me an account with administrator(not necessary founder) access so that I can solve the issue for you.
Guest- Guest
Re: Remove Negative Votes From Statistics
Last edited by smejker on June 26th 2017, 9:23 pm; edited 1 time in total
smejker- Forumember
- Posts : 167
Reputation : 4
Language : serbo-croatian/english/macedonian/bulgarian
Re: Remove Negative Votes From Statistics
Hi,
I received your PM. The problem should be solved now. You had 2 javascripts with problems(I deleted one of them because it was html code into a javascript file. The other one is deactivated).
I received your PM. The problem should be solved now. You had 2 javascripts with problems(I deleted one of them because it was html code into a javascript file. The other one is deactivated).
Guest- Guest
Re: Remove Negative Votes From Statistics
Problem solved & topic archived.
|
Similar topics
» Remove negative votes
» Remove negative votes for posts
» I want positive and negative evaluation code
» Remove statistics/online
» How do you remove the statistics on the front page?
» Remove negative votes for posts
» I want positive and negative evaluation code
» Remove statistics/online
» How do you remove the statistics on the front page?
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum