Dynamically Set Limit

Read the Walkthrough

Code

Filename: gpls-dynamically-set-limit.php

<?php
/**
 * Gravity Perks // Limit Submissions // Dynamically Set Limit
 * https://gravitywiz.com/gravity-forms-limit-submissions/
 */
// Update '123' to the Form ID
add_filter('gpls_rule_groups_123', function ( $rule_groups ) {

	foreach ( $rule_groups as &$rule_group ) {
		if ( $rule_group->name == 'Your Feed Name' ) {
			$rule_group->limit = 100;
		}
	}

	return $rule_groups;
});

Leave a Reply

Your email address will not be published. Required fields are marked *

  • Trouble installing this snippet? See our troubleshooting tips.
  • Need to include code? Create a gist and link to it in your comment.
  • Reporting a bug? Provide a URL where this issue can be recreated.

By commenting, I understand that I may receive emails related to Gravity Wiz and can unsubscribe at any time.