woocommerce_cheque_email_instructions_order_status

woocommerce_cheque_email_instructions_order_status

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.9.5

apply_filters('woocommerce_cheque_email_instructions_order_status') is found 1 times:

  • /includes/gateways/cheque/class-wc-gateway-cheque.php line 130
    			 *
    			 * @param string $status The default status.
    			 * @param object $order  The order object.
    			 */
    			$instructions_order_status = apply_filters( 'woocommerce_cheque_email_instructions_order_status', OrderStatus::ON_HOLD, $order );
    			if ( $order->has_status( $instructions_order_status ) ) {
    				echo wp_kses_post( wpautop( wptexturize( $this->instructions ) ) . PHP_EOL );
    			}
    		}
    	}