Skip to content

Commit 79892bf

Browse files
committed
gpns-add-other-fields-to-date-schedule.php: Added other fields to the GP Notification Scheduler.
1 parent 7f45cfe commit 79892bf

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
/**
3+
* Gravity Perks // Notification Scheduler // Add other fields to the Date Schedule
4+
* https://gravitywiz.com/documentation/gravity-forms-notification-scheduler/
5+
*/
6+
// Replace 131 in 'gpns_date_fields_131' with your form ID, and replace 5 in '$field->id == 5' with the field ID to add.
7+
add_filter( 'gpns_date_fields_131', 'add_field_to_ns', 10 ,2 );
8+
function add_field_to_ns( $fields, $form ) {
9+
10+
// loop over the form fields
11+
foreach( $form['fields'] as $field ) {
12+
13+
// find your target field (to add to gpns)
14+
if( $field->id == 5 ) {
15+
// add the target field to fields array
16+
array_push( $fields, $field );
17+
}
18+
}
19+
20+
return $fields;
21+
}

0 commit comments

Comments
 (0)