Skip to content

Instantly share code, notes, and snippets.

@jadealombro
Last active August 12, 2021 15:26
Show Gist options
  • Save jadealombro/321149f3202188c8a9e9fad74e331be6 to your computer and use it in GitHub Desktop.
Save jadealombro/321149f3202188c8a9e9fad74e331be6 to your computer and use it in GitHub Desktop.
This script will only work specifically for form 41 with one multiple choice (image choices) field on each page.
<?php
add_action( 'wpforms_wp_footer_end', function() { ?>
<script type="text/javascript">
;(function($) {
$( "#wpforms-form-41 .wpforms-field-radio li" ).on( "click", function() {
$(this).closest('.wpforms-page').find('.wpforms-page-next').click();
});
})(jQuery);
</script>
<?php } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment