Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active December 17, 2018 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spivurno/73b42da15f92f8e330d9cea9a5631cab to your computer and use it in GitHub Desktop.
Save spivurno/73b42da15f92f8e330d9cea9a5631cab to your computer and use it in GitHub Desktop.
Gravity Perks // GP Limit Submissions // Disable Limit Feeds when Editing via Sticky List
<?php
/**
* Gravity Perks // GP Limit Submissions // Disable Limit Feeds when Editing via Sticky List
* http://gravitywiz.com/documentation/gravity-forms-limit-submissions/
*/
add_filter( 'gpls_rule_groups', function( $rule_groups, $form_id ) {
if( rgpost( 'mode' ) == 'edit' ) {
$rule_groups = array();
}
return $rule_groups;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment