woocommerce_email_heading_customer_invoice_paid

woocommerce_email_heading_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_heading_customer_invoice_paid') is found 1 times:

  • /includes/emails/class-wc-email-customer-invoice.php line 102
    098
    099
    100
    101
    102
    103
    104
    105
    106
    107
    */
    public function get_heading() {
        if ( $this->object->has_status( wc_get_is_paid_statuses() ) ) {
            $heading = $this->get_option( 'heading_paid', $this->get_default_heading( true ) );
            return apply_filters( 'woocommerce_email_heading_customer_invoice_paid', $this->format_string( $heading ), $this->object, $this );
        }
     
        $heading = $this->get_option( 'heading', $this->get_default_heading() );
        return apply_filters( 'woocommerce_email_heading_customer_invoice', $this->format_string( $heading ), $this->object, $this );
    }