Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active September 3, 2020 20:04
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/5a8078711139730964b86bd8c7ef7b5e to your computer and use it in GitHub Desktop.
Save spivurno/5a8078711139730964b86bd8c7ef7b5e to your computer and use it in GitHub Desktop.
Gravity Perks // GP Limit Submissions // Disable Limit Feeds when Editing via Gravity View
<?php
/**
* Gravity Perks // GP Limit Submissions // Disable Limit Feeds when Editing via Gravity View
* http://gravitywiz.com/documentation/gravity-forms-limit-submissions/
*/
add_filter( 'gpls_rule_groups', function( $rule_groups, $form_id ) {
if( is_callable( 'gravityview_get_context' ) && gravityview_get_context() == '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