Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save phillipwilhelm/a9d5bc83b1038e5a6062570c832a921a to your computer and use it in GitHub Desktop.
Save phillipwilhelm/a9d5bc83b1038e5a6062570c832a921a to your computer and use it in GitHub Desktop.
Gravity Perks // Gravity Forms Multi-page Form Navigation // Style Guide
<?php
add_filter( 'gpmpn_frontend_labels', 'modify_gpmpn_frontend_labels', 10, 2 );
add_filter( 'gpmpn_frontend_labels', 'modify_gpmpn_frontend_labels', 10, 2 );
function modify_gpmpn_frontend_labels( $labels, $form ) {
$labels['backToLastPage'] = 'My Custom Button Label';
return $labels;
}
add_filter( 'gpmpn_enable_submission_from_last_page_with_errors', '__return_true' );
/* style all page links */
.gpmpn-step-linked {
/* custom styles */
}
/* style current page/step */
.gpmpn-step-current {
/* custom styles */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment