Help

Help > Forum > Topics & Posts > Prevent users from viewing poll results before they vote

Prevent users from viewing poll results before they vote

Use these steps to hide the Show Results button in your forum polls.

  1. Log in to your Website Toolbox account.
  2. Click the Integrate link in the main menu.
  3. Click the HTML link.
  4. Insert the following HTML code into the Forum Head Tag HTML Code text box:

    <script>
    // Hide the Show Results link
    document.addEventListener("DOMContentLoaded", function() { 
    	if(jQ("#showPollResults").length) {
    		jQ("#showPollResults").addClass("hidden");
    	}
    });
    </script>

  5. Save your Settings.


If you still need help, please contact us.