Entry counter for each user
add_filter(‘frm_validate_field_entry’, ‘add_user_entry_counter’, 10, 3); function add_user_entry_counter($errors, $posted_field, $posted_value){ $field_id = 2806; // Change 2806 to the ID of the user entry counter field. if ( $posted_field->id == $field_id ) { $previous_value = FrmProEntriesController::get_field_value_shortcode( array( ‘field_id’ => $field_id, ‘user_id’ => ‘current’…Continue reading