woocommerce_should_send_review_request
woocommerce_should_send_review_request
Appears in: woocommerce.10.9.1
Hook Type: filter
Displaying hooks found in version: woocommerce.10.9.1apply_filters('woocommerce_should_send_review_request') is found 1 times:
- /src/Internal/OrderReviews/Scheduler.php line 151
* @param WC_Order $order The order being processed. * * @since 10.8.0 */ $should_send = (bool) apply_filters( 'woocommerce_should_send_review_request', true, $order ); if ( ! $should_send ) { $this->log_skip( $order_id, 'opt-out filter returned false' ); return; } $when = time() + $email->get_delay_seconds();