gppt_is_custom_pagination
Description
Filter the custom pagination flag to enable custom pagination support.
In some cases, the progress indicators maybe be customized by a 3rd party plugin or as part of a bespoke solution. If such customizations conflict with GP Page Transitions animation of progress indicators, use this filter to enable custom pagination support.
Custom pagination support will transition the progress indicators as a single block-level element. This method is more flexible and supports a wide variety of customizations that can be made to the progress indicator markup.
Usage
Apply to All Forms
add_filter( 'gppt_is_custom_pagination', 'your_function_name', 10, 2 );
Apply to Specific Forms (by form ID)
// format: gppt_is_custom_pagination_{formId}
add_filter( 'gppt_is_custom_pagination_7', 'your_function_name', 10, 2 );
Parameters
$is_custom array
Set to
true
to enable custom pagination support.$form Form object
The current form object.
Examples
Enable Custom Pagination Support
<?php
/**
* Gravity Perks // Page Transitions // Enable Custom Pagination Support
* https://gravitywiz.com/documentation/gppt_is_custom_pagination/
*/
add_filter( 'gppt_is_custom_pagination', '__return_true' );
Since
This filter is available since GP Page Transitions 1.0.