Poll only to see for
4 posters
Page 1 of 1
Poll only to see for
Can a poll be set up with a script so that only the administrator can see the poll.
I mean the button view results is then invisible to the members, only to see for the staff.
I now have a script but then we see nothing until we have voted
And it is difficult for a tie, so it is useful if the staff can see the results
I mean the button view results is then invisible to the members, only to see for the staff.
I now have a script but then we see nothing until we have voted
And it is difficult for a tie, so it is useful if the staff can see the results
Last edited by Liesbeth* on April 17th 2018, 8:26 am; edited 1 time in total
Re: Poll only to see for
Sorry. What APE said is true the results themselves are managed server side, but please don't close this topic yet.
It's not easy but I believe technically it still can be done. It would still be possible to hide the "View results" button of the poll on all members but admins, and also replace the poll in result mode with a text "Only admins can see the results of this poll" or something like that (this would be better via template if possible, to make sure the user doesn't cheat)
But I have a question: After voting, the members should be able to see the results then, or neither in that case?
Probably it would be useful if you post the script you are using currently.
It's not easy but I believe technically it still can be done. It would still be possible to hide the "View results" button of the poll on all members but admins, and also replace the poll in result mode with a text "Only admins can see the results of this poll" or something like that (this would be better via template if possible, to make sure the user doesn't cheat)
But I have a question: After voting, the members should be able to see the results then, or neither in that case?
Probably it would be useful if you post the script you are using currently.
Wecoc- Forumember
- Posts : 144
Reputation : 111
Language : Catalan, Spanish, English
Re: Poll only to see for
No, if members vote, members can see the results. That can not be changed anyway. I want to post the javascript that I use now.
I now use the script above in java
- hide:
- $(function (){
$('[href*="vote=viewresult"]').remove()
});
I now use the script above in java
Re: Poll only to see for
Hey,
Something like this?
Something like this?
- Code:
$(document).ready(function(){
var level = _userdata["user_level"];
if ( level === 0 ) {
$('a[href*="?vote=viewresult"]').remove();
}
});
Re: Poll only to see for
Thank you, as I can see it now it works on my test forum. Apply now to test my real forum.
Re: Poll only to see for
Thank you pedxz this script works perfectly members can not see the managers. The topic can, in my opinion, be locked.
Re: Poll only to see for
Problem solved & topic archived.
|
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum