woocommerce_should_send_review_request

woocommerce_should_send_review_request

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.10.9.4

apply_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;
    		}
    
    		// Don't queue an email whose link would land on the empty-state page: