By default, Gravity Forms Add-Ons does not send email notifications when they are assigned to a product. The change below will enable Gravity Forms to send the notification. Woocommerce Gravity Form add-on Fix: gravityforms-product-addons.php, line: 567
2 3 4 5 6 7 8 9 10 11 12 |
function disable_notifications( $disabled, $form, $lead ) { return true; } We changed true to false. function disable_notifications( $disabled, $form, $lead ) { return false; } |