Last active
April 20, 2019 23:06
-
-
Save ronalfy/60184c195bb074ff269b268c6677c6fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'gform_pagination_event_category', 'gf_form_category_pagination_category', 10, 4 ); | |
function gf_form_category_pagination_category( $category_name, $form, $source_page_number, $current_page_number ) { | |
return 'Forms'; | |
} | |
add_filter( 'gform_pagination_event_action', 'gf_form_action_pagination_action', 10, 4 ); | |
function gf_form_action_pagination_action( $action_name, $form, $source_page_number, $current_page_number ) { | |
return "Submission"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment