woocommerce_customer_stock_notifications_already_signed_up_message_html
woocommerce_customer_stock_notifications_already_signed_up_message_html
Appears in: woocommerce.10.2.2
Hook Type: filter
Displaying hooks found in version: woocommerce.10.2.2apply_filters('woocommerce_customer_stock_notifications_already_signed_up_message_html') is found 1 times:
- /src/Internal/StockNotifications/Frontend/ProductPageIntegration.php line 178
* @param WC_Product $product Product object. * @param Notification $notification Notification object. * @return string|null The message. */ $pre = apply_filters( 'woocommerce_customer_stock_notifications_already_signed_up_message_html', null, $product, $notification ); if ( ! is_null( $pre ) ) { echo wp_kses_post( $pre ); return; } $text = __( 'You have already joined the waitlist! Click {manage_account_link} to manage your notifications.', 'woocommerce' );