• Resolved cristianhagi

    (@cristianhagi)


    Hi, is it possible to automatically arrange the results of a poll by the number of votes?

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @cristianhagi

    I trust you’re doing well!

    Please let me know more information about how you wish to arrange the poll results. I see that you’re using a pie chart, do you wish to show the order of the results from biggest to smallest in the graphic chart? Or the vote count that shows above the chart?

    Out of the box, there is no option to order the results. Although I’ve forwarded your suggestion to our developers so they could review it.

    Kind regards,
    Nastia

    Plugin Support Imran – WPMU DEV Support

    (@wpmudev-support9)

    Hello @cristianhagi

    I trust you’re doing well!

    O got feedback from our developers and this option will be available in the next plugin release.

    In the meantime, you may try the following workaround:

    1. Please access your site’s folders via FTP or a File Manager.
    2. Go to the ../wp-content/plugins/forminator/library/helpers/ and look for the helper-forms.php file.
    3. Please replace on line #1103 return $chart_datas; with
    return apply_filters( 'forminator_polls_chart_datas', $chart_datas );
    4. Add the folloewing code to teh functions.php file of your child theme:

    add_filter(
    	'forminator_polls_chart_datas',
    	function( $entries ) {
    		$votes = array_column( $entries, 1 );
    
    		array_multisort( $votes, SORT_DESC, $entries );
    
    		return $entries;
    	}
    );

    Let us know if you have any questions!

    Kind regards,
    Nastia

    Plugin Support Nithin – WPMU DEV Support

    (@wpmudevsupport11)

    Hi @cristianhagi,

    Hope you are doing well!

    We haven’t heard back from you for a while now so we’ve marked this ticket as resolved. If you do have any followup questions or require further assistance feel free to reopen it and let us know here.

    Kind Regards,
    Nithin

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Order of the poll results’ is closed to new replies.