We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gw-multiple-entries-list-field.php
1 parent d15c869 commit f88674bCopy full SHA for f88674b
gravity-forms/gw-multiple-entries-list-field.php
@@ -93,8 +93,10 @@ public function create_multiple_entries( $entry ) {
93
94
}
95
96
- // send Gravity Form notifications
97
- GFAPI::send_notifications( $form, $working_entry );
+ // send Gravity Forms notifications, if enabled
+ if ( $this->_args['send_notifications'] ) {
98
+ GFAPI::send_notifications( $form, $working_entry );
99
+ }
100
101
102
return $entry;
@@ -151,4 +153,5 @@ public function is_applicable_form( $form ) {
151
153
),
152
154
'preserve_list_data' => true,
155
'append_list_data' => true,
156
+ 'send_notifications' => false,
157
) );
0 commit comments