woocommerce_customer_stock_notifications_signup
Action: woocommerce_customer_stock_notifications_signup
Usage
add_action( 'woocommerce_customer_stock_notifications_signup', 'wp_kama_woocommerce_customer_stock_notifications_signup_action' );
/**
* Function for `woocommerce_customer_stock_notifications_signup` action-hook.
*
* @param Notification $notification The notification.
*
* @return void
*/
function wp_kama_woocommerce_customer_stock_notifications_signup_action( $notification ){
// action...
}
- $notification(Notification)
- The notification.
Changelog
| Since 10.2.0 | Introduced. |
Where the hook is called
woocommerce_customer_stock_notifications_signup
woocommerce/src/Internal/StockNotifications/Frontend/SignupService.php 124
do_action( 'woocommerce_customer_stock_notifications_signup', $notification );
woocommerce/src/Internal/StockNotifications/Frontend/SignupService.php 161
do_action( 'woocommerce_customer_stock_notifications_signup', $notification );