Description
Filter button labels for multi-page navigation plugin.
Usage
add_filter( 'gpmpn_frontend_labels', 'my_custom_function' );
Parameters
labels array
An array of button labels that are used for navigation.
Examples
Change the “Next Page with Errors” button.
add_filter( 'gpmpn_frontend_labels', function( $labels ) {
// Change next page with errors button to be more verbose
$labels['nextPageWithErrors'] = 'Skip to the next page with errors';
return $labels;
} );
Since
This filter is available since Gravity Forms Multi-Page Navigation 1.0.8.