Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gpls-disable-specific-limits-for-logged-in-users.php: Added new snippet. #1033

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/**
* Gravity Perks // GP Limit Submissions // Disable Specific Limits for Logged In Users
* https://gravitywiz.com/documentaiton/gravity-forms-limit-submissions/
*
* Instructions:
*
* 1. Install the snippet.
* https://gravitywiz.com/documentation/managing-snippets/
*
* 2. Configure the snippet based on inline instructions.
*/
// Update `123` to your form ID
add_filter( 'gpls_rule_groups_123', function( $rule_groups, $form_id ) {

if( ! is_user_logged_in() ){
return $rule_groups;
}

// Enter a comma separated list of GPLS feed IDs you need to disable
$rules_to_disable = array( 68 );

$new_rules = array();

foreach( $rule_groups as $rule ){
if( ! in_array( $rule->feed_id, $rules_to_disable ) ){
$new_rules[] = $rule;
}
}

return $new_rules;

}, 10, 2 );
Loading