Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active September 3, 2020 20:04
Show Gist options
  • Select an option

  • Save spivurno/5a8078711139730964b86bd8c7ef7b5e to your computer and use it in GitHub Desktop.

Select an option

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 );
@spivurno
Copy link
Copy Markdown
Author

spivurno commented Sep 3, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment