woocommerce_email_subject_customer_invoice_paid

woocommerce_email_subject_customer_invoice_paid

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_email_subject_customer_invoice_paid') is found 1 times:

  • /includes/emails/class-wc-email-customer-invoice.php line 87
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    public function get_subject() {
        if ( $this->object->has_status( array( OrderStatus::COMPLETED, OrderStatus::PROCESSING ) ) ) {
            $subject = $this->get_option( 'subject_paid', $this->get_default_subject( true ) );
     
            return apply_filters( 'woocommerce_email_subject_customer_invoice_paid', $this->format_string( $subject ), $this->object, $this );
        }
     
        $subject = $this->get_option( 'subject', $this->get_default_subject() );
        return apply_filters( 'woocommerce_email_subject_customer_invoice', $this->format_string( $subject ), $this->object, $this );
    }