• Not having much luck with Woo or Gravity, so thought I’d try here:

    I am using the Gravity Forms Product Add-ons plugin for WooCommerce. Woo confirms that the Admin Notification email isn’t a feature when the form is used on a product:

    “Gravity Forms Add-Ons does not send email notifications when they are assigned to a product.” (see FAQs: https://docs.woothemes.com/document/woocommerce-gravity-forms-product-addons/)

    While I understand that it seems redundant given the form fields are all included in the WooCommerce email confirmations, the form I’m adding to my products is quite comprehensive and I’d prefer to keep all that messy extra data separate to the WooCommerce order transaction by having the usual Gravity Forms Admin Notification send via email also (I plan to remove the add-on fields from the WooCommerce emails).

    Can anyone give me guidance on how to get the usual Gravity Forms Admin Notification email to send even when the form is assigned to a product, please?

    Many thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    How did you fixed this? I have the same issue. Please post some information if you found a solution for this.

    Best Regards

    I had the same issue and I resolved using the following code:

    function division_enable_notifications( $disabled, $form, $lead ){
      return false;
    }
    add_filter( 'gform_disable_notification_FORMID', 'division_enable_notifications', 20, 3 );

    Make sure that you change FORMID to the id of the form that you want to target.

    For some reason, there are two entries created when you use Gravity forms and Product Addons together so I used this plugin to prevent that:

    https://www.ads-software.com/plugins/gravity-forms-duplicate-prevention/

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Create Email Notification function for Gravity Forms Product Add-ons Plugin’ is closed to new replies.