Title: Woocommerce waitinglist plugin
Last modified: May 23, 2023

---

# Woocommerce waitinglist plugin

 *  Resolved [almsit](https://wordpress.org/support/users/almsit/)
 * (@almsit)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/)
 * Hello. I installed the app and everything works. I have a Woocommerce waitinglist
   plugin added. How can I add wp to the telegram plugin, if the user puts something
   on hold, I didn’t receive a notification? There are no checkboxes in the settings.
   or is there a web hook for function.php ?

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

 *  Plugin Author [Irshad Ahmad](https://wordpress.org/support/users/irshadahmad21/)
 * (@irshadahmad21)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16760631)
 * Hello,
 * Do you receive an email notification when that happens?
 *  Thread Starter [almsit](https://wordpress.org/support/users/almsit/)
 * (@almsit)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16760643)
 * I get a notification for any event: when a user adds to the waiting list, makes
   an order, pays, and so on. I want to disable when the user adds to the waiting
   list. how to do it?
 *  Plugin Author [Irshad Ahmad](https://wordpress.org/support/users/irshadahmad21/)
 * (@irshadahmad21)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16760764)
 * There is a filter `wptelegram_notify_send_notification` that you can use to avoid
   sending notification to Telegram:
 *     ```wp-block-code
       add_filter( 'wptelegram_notify_send_notification',	function ( $send, $args ) {
       	// If the email subject contains the string "on-hold"
       	$item_put_on_hold = false !== strpos( strtolower( $args['subject'] ), 'on-hold' );
   
       	if ( $item_put_on_hold ) {
       		$send = false;
       	}
   
       	return $send;
       }, 10, 2 );
       ```
   
 * That’s just an example which you will need to update as per your needs.
 *  Thread Starter [almsit](https://wordpress.org/support/users/almsit/)
 * (@almsit)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16807424)
 * Thank you. It worked. For some reason, the other day it stopped working (the 
   hook does not work). Debug does not display a message. What to do?
 *  Plugin Author [Irshad Ahmad](https://wordpress.org/support/users/irshadahmad21/)
 * (@irshadahmad21)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16807668)
 * I already mentioned that it was only an example and you might need to update 
   it as per your requirements.
 *  Thread Starter [almsit](https://wordpress.org/support/users/almsit/)
 * (@almsit)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16807699)
 * I modified your example to suit my needs. It worked well for about 2 months. 
   Now, when processing a telegram event, it doesn’t even know the function (echo“
   1”; do not display admin-ajax in response), as if the hook is not hooked. What
   to do here?
 *  Plugin Author [Irshad Ahmad](https://wordpress.org/support/users/irshadahmad21/)
 * (@irshadahmad21)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16807703)
 * That means the notification is not triggered at all. Please ensure that the corresponding
   email notification is sent to an email address saved on **Private Notifications**
   settings.
 *  Thread Starter [almsit](https://wordpress.org/support/users/almsit/)
 * (@almsit)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16808392)
 * how to make the hook work without including it in the settings? can change it?
   because now with any order, changes in the status of the order and so on come
   in notifications. It is necessary to me that came only then when the user rises
   in a waiting list.
 *  Plugin Author [Irshad Ahmad](https://wordpress.org/support/users/irshadahmad21/)
 * (@irshadahmad21)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16808648)
 * The plugin watches the emails sent out to the email address you specify in the
   settings. Those emails are then forwarded to Telegram. So you need to ensure 
   that emails are sent to the email address you specify.
 *  Thread Starter [almsit](https://wordpress.org/support/users/almsit/)
 * (@almsit)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16824477)
 * Thank you. How to make telegram notifications only about orders? now they come
   about changing the password, and about registering a user, and more. Is there
   any hook?
 *  Thread Starter [almsit](https://wordpress.org/support/users/almsit/)
 * (@almsit)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16824488)
 * link to settings
 * [https://ibb.co/0KvB5s2](https://ibb.co/0KvB5s2)
    -  This reply was modified 2 years, 10 months ago by [almsit](https://wordpress.org/support/users/almsit/).
    -  This reply was modified 2 years, 10 months ago by [almsit](https://wordpress.org/support/users/almsit/).
 *  Plugin Author [Irshad Ahmad](https://wordpress.org/support/users/irshadahmad21/)
 * (@irshadahmad21)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16824531)
 * > How to make telegram notifications only about orders?
 * You can add another specific email address in WooCommerce email settings for “
   New Order”, then use that email in **Private Notifications** settings of WP Telegram

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

The topic ‘Woocommerce waitinglist plugin’ is closed to new replies.

 * ![](https://ps.w.org/wptelegram/assets/icon-256x256.png?rev=2500018)
 * [WP Telegram (Auto Post and Notifications)](https://wordpress.org/plugins/wptelegram/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wptelegram/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wptelegram/)
 * [Active Topics](https://wordpress.org/support/plugin/wptelegram/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wptelegram/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wptelegram/reviews/)

 * 12 replies
 * 2 participants
 * Last reply from: [Irshad Ahmad](https://wordpress.org/support/users/irshadahmad21/)
 * Last activity: [2 years, 10 months ago](https://wordpress.org/support/topic/woocommerce-waitinglist-plugin/#post-16824531)
 * Status: resolved