Created
March 28, 2019 13:00
-
-
Save spivurno/51e9025ec2fe00c60ffa89d5a398d3de 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 | |
/** | |
* Gravity Perks // Limit Choices // Fix Conflict with GF Real Time Validation | |
* http://gravitywiz.com/documentation/gravity-forms-limit-choices/ | |
*/ | |
if( class_exists( 'Gravity_Forms_Live_Validation' ) ) { | |
$gf_live_validation = Gravity_Forms_Live_Validation::get_instance(); | |
remove_filter( 'gform_pre_render', array( $gf_live_validation, 'lv_apply_validations_to_form' ) ); | |
add_filter( 'gform_pre_render', array( $gf_live_validation, 'lv_apply_validations_to_form' ), 11 ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment