Title: Notify WpForm
Last modified: January 20, 2026

---

# Notify WpForm

 *  [wpuserso](https://wordpress.org/support/users/wpuserso/)
 * (@wpuserso)
 * [4 months, 2 weeks ago](https://wordpress.org/support/topic/notify-wpform/)
 * Hello. I cannot activate notifications for the plugin WpForm. It is installed,
   license **Elite**. But it doesn’t connect.
 * [https://disk.yandex.ru/i/2AttFUyPDXvMcw](https://disk.yandex.ru/i/2AttFUyPDXvMcw)
 * [https://disk.yandex.ru/i/-D4nDNt9f9CxjQ](https://disk.yandex.ru/i/-D4nDNt9f9CxjQ)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Plugin Author [rainafarai](https://wordpress.org/support/users/rainafarai/)
 * (@rainafarai)
 * [3 months, 1 week ago](https://wordpress.org/support/topic/notify-wpform/#post-18835727)
 * Hi! Thank you for reporting this.
 * Unfortunately I don’t have access to a WPForms Elite license to reproduce and
   debug the issue directly. 
   I found the issue — the plugin currently checks only
   for the **WPForms Lite** version. The **Pro/Elite** version uses a different 
   plugin slug and was not being detected.in /wp-content/plugins/notification-for-
   telegram/include/nftb_optionpage.phpsearch for this code :if (is_plugin_active(‘
   wpforms-lite/wpforms.php’))replace
 *     ```wp-block-code
       if (is_plugin_active('wpforms-lite/wpforms.php')) 
       ```
   
 * With :
 *     ```wp-block-code
       if ( is_plugin_active('wpforms-lite/wpforms.php') ||is_plugin_active('wpforms/wpforms.php') )
       ```
   
 * 
   Let me know if its working
 * If its woriking This will be fixed in the next release. Thank you for reporting
   it, your feedback directly helped improve the plugin! 🙏
 *  Thread Starter [wpuserso](https://wordpress.org/support/users/wpuserso/)
 * (@wpuserso)
 * [3 months ago](https://wordpress.org/support/topic/notify-wpform/#post-18842491)
 * Hi! I’ve applied the change, and now the WPForms checkbox/switch is showing up
   in the plugin settings.
 * However, notifications still don’t arrive when the form is submitted. Is there
   anything else that needs to be enabled inside the WPForms form itself (e.g., 
   specific notification settings, integrations, or a required setting per form)
   for Telegram notifications to trigger?
 *  Plugin Author [rainafarai](https://wordpress.org/support/users/rainafarai/)
 * (@rainafarai)
 * [3 months ago](https://wordpress.org/support/topic/notify-wpform/#post-18843857)
 * Sorry i Don’t have **Pro/Elite** version to test !!
   anyway try to replace this
   code on in /wp-content/plugins/notification-for-telegram/index.phpline around
   350
 *     ```wp-block-code
       //WP FORMadd_action("wpforms_process_complete", 'nftb_function_save_custom_form_data');function nftb_function_save_custom_form_data($params) {$TelegramNotify2 = new nftb_TelegramNotify();	if ($TelegramNotify2->getValuefromconfig('notify_wpform') && is_plugin_active('wpforms-lite/wpforms.php')) {	$bloginfo = get_bloginfo( 'name' );  $defmessage = "" ;    foreach($params as $idx=>$item) {        $field_name = $item['name'];        $fiel_value = $item['value'];                 $defmessage = $defmessage ."\r\n".$field_name." : ".$fiel_value;                // Do whatever you need    }        nftb_send_teleg_message( "NEW Wpform".$bloginfo."\r\n ".$defmessage, '','');    return true;     } //}
       ```
   
 * with this code and test
 *     ```wp-block-code
       add_action("wpforms_process_complete", 'nftb_function_save_custom_form_data', 10, 4);function nftb_function_save_custom_form_data($fields, $entry, $form_data, $entry_id) {    $TelegramNotify2 = new nftb_TelegramNotify();    // Check for Lite OR Pro/Elite    $is_wpforms_active = is_plugin_active('wpforms-lite/wpforms.php')                       || is_plugin_active('wpforms/wpforms.php');    if ($TelegramNotify2->getValuefromconfig('notify_wpform') && $is_wpforms_active) {        $bloginfo = get_bloginfo('name');        $defmessage = "";        foreach ($fields as $field) {            $field_name  = isset($field['name'])  ? $field['name']  : '';            $field_value = isset($field['value']) ? $field['value'] : '';            $defmessage .= "\r\n" . $field_name . " : " . $field_value;        }        nftb_send_teleg_message("NEW Wpform " . $bloginfo . "\r\n " . $defmessage, '', '');        return true;    }}
       ```
   
 * waiting for you news !!
   thx
 *  Plugin Author [rainafarai](https://wordpress.org/support/users/rainafarai/)
 * (@rainafarai)
 * [3 months ago](https://wordpress.org/support/topic/notify-wpform/#post-18843860)
 * I tried this fix and works on lite version let me know about **Pro/Elite**
 *  Plugin Author [rainafarai](https://wordpress.org/support/users/rainafarai/)
 * (@rainafarai)
 * [3 months ago](https://wordpress.org/support/topic/notify-wpform/#post-18843862)
 *     ```wp-block-code
       add_action("wpforms_process_complete", 'nftb_function_save_custom_form_data', 10, 4);function nftb_function_save_custom_form_data($fields, $entry, $form_data, $entry_id) {    $TelegramNotify2 = new nftb_TelegramNotify();    // Check for Lite OR Pro/Elite    if ($TelegramNotify2->getValuefromconfig('notify_wpform') && defined('WPFORMS_VERSION')) {        $bloginfo = get_bloginfo('name');        $defmessage = "";        foreach ($fields as $field) {            $field_name  = isset($field['name'])  ? $field['name']  : '';            $field_value = isset($field['value']) ? $field['value'] : '';            $defmessage .= "\r\n" . $field_name . " : " . $field_value;        }        nftb_send_teleg_message("NEW Wpform " . $bloginfo . "\r\n " . $defmessage, '', '');        return true;    }}
       ```
   
 * new method to check if active defined(‘WPFORMS_VERSION’))
   try this last fix !!
   in /wp-content/plugins/notification-for-telegram/index.phpline around 350

Viewing 5 replies - 1 through 5 (of 5 total)

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fnotify-wpform%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/notification-for-telegram/assets/icon-256x256.jpg?rev=2495082)
 * [Notification for Telegram](https://wordpress.org/plugins/notification-for-telegram/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/notification-for-telegram/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/notification-for-telegram/)
 * [Active Topics](https://wordpress.org/support/plugin/notification-for-telegram/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/notification-for-telegram/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/notification-for-telegram/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [rainafarai](https://wordpress.org/support/users/rainafarai/)
 * Last activity: [3 months ago](https://wordpress.org/support/topic/notify-wpform/#post-18843862)
 * Status: not resolved