Quote:
Originally Posted by macroforum
One question: it's possible shows only Form results poll and to hide Form results and form results table?
I'm using this beatiful Mod like photo contest system voting....and the users don't must see who has voted but only the final votes.
Sorry for my bad english
Thanks
Antonio
|
There is not an option to disable form results table.
Edit Plugin:
Easy Forms Part 3
Find line
PHP Code:
if ($_REQUEST['do'] == 'formresults_table')
Replace with
PHP Code:
if ($_REQUEST['do'] == 'formresults_table' && $disable)
Find line
PHP Code:
if ($_REQUEST['do'] == 'formresults')
Replace with
PHP Code:
if ($_REQUEST['do'] == 'formresults' && $disable)