• Resolved pracko

    (@pracko)


    I added a Forminator Form shortcode to a Forminator Personality Quiz answer/result, but the shortcode does not render the form when the quiz is completed and the answer/result is displayed (the shortcode itself is visible). How can I get form shortcodes to display in personality results so that I can gather relevant user data after they complete the quiz? Seems like this is something that should work right out of the box, but it doesn’t.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Amin – WPMU DEV Support

    (@wpmudev-support2)

    Hello @pracko ,

    By default, shortcodes are not rendered in the quizz results, but there is a small code snippet that will do the work:

    add_filter( 'forminator_quizzes_render_nowrong_result', 'allow_shortcodes_on_quizz_results', 15 );
    function allow_shortcodes_on_quizz_results( $content ) {
    	return do_shortcode( $content );
    }

    You can use it in the functions.php file of the child theme or as Must Use plugin https://www.ads-software.com/support/article/must-use-plugins/

    kind regards,
    Kasia

    Thread Starter pracko

    (@pracko)

    Awesome, thank you Kasia! That worked. Now what I’d really love to see is multi-page quizzes. I hope that will be available soon. In the meantime, I’m having to use another plugin for that.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Form Shortcode in Quiz Results’ is closed to new replies.