Okay I’ve run into an issue. Because it was too difficult to change that message to a payment link, I decided to get rid of the line all together and add the payment link some other way from within the emails.
So I deleted the line, but the message is still in the emails. So weird! So this is the old code:
'description' => array(
'title' => __( 'Description', 'wc-invoice-gateway' ),
'type' => 'textarea',
'description' => __( 'Payment method description which the user sees during checkout.', 'wc-invoice-gateway' ),
'default' => __( 'Thank you for your order. You\'ll be invoiced soon.', 'wc-invoice-gateway' ),
'desc_tip' => true,
),
'instructions' => array(
'title' => __( 'Instructions', 'wc-invoice-gateway' ),
'type' => 'textarea',
'description' => __( 'Instructions that will be added to the thank you page after checkout and included within the new order email.', 'wc-invoice-gateway' ),
'default' => __( 'If you\'re an account customer you\'ll be invoiced soon with regards to payment for your order.', 'wc-invoice-gateway' ),
'desc_tip' => true,
),
and I changed it to this:
'description' => array(
'title' => __( 'Description', 'wc-invoice-gateway' ),
'type' => 'textarea',
'description' => __( 'Payment method description which the user sees during checkout.', 'wc-invoice-gateway' ),
'default' => __( '', 'wc-invoice-gateway' ),
'desc_tip' => true,
),
'instructions' => array(
'title' => __( 'Instructions', 'wc-invoice-gateway' ),
'type' => 'textarea',
'description' => __( 'Instructions that will be added to the thank you page after checkout and included within the new order email.', 'wc-invoice-gateway' ),
'default' => __( '', 'wc-invoice-gateway' ),
'desc_tip' => true,
),
Why are these 2 messages still being shown?