[ad_1]
For those who need to also remove the e-transfer info from the processing emails… (Why is this info in the processing email when this email goes out once you have marked the order as paid already right?)
I discovered on my own how remove the info from the processing email. Here is how you do it.
Open the file class-betpg-email-transfer-gateway.php in the plugin file directory and look for this:
( $order->has_status( ‘on-hold’ ) || $order->has_status( ‘processing’ ) || $order->has_status( ‘pending’ ) ) ) {
Replace it with this:
( $order->has_status( ‘on-hold’ ) || $order->has_status( ‘pending’ ) ) ) {
Save the file and wha-la, no more info about e-transfers in the processing emails. Hope this helps you.
