Dynamically Set Limit by User Meta

Code

Filename: gpls-set-limit-by-user-meta.php

<?php
/**
 * Gravity Perks // Limit Submissions // Dynamically Set Limit by User Meta
 * https://gravitywiz.com/documentation/gravity-forms-limit-submissions/
 */
// Update "123" to your form ID.
add_filter( 'gpls_rule_groups_123', function ( $rule_groups ) {
	// Update "my_meta_key" to the meta key that should contain the number of times the form can be submitted.
	$rule_groups[0]->limit = (int) get_user_meta( get_current_user_id(), 'my_meta_key', true );
	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.