Als je gebruik maakt van de onderstaande code dan zal de Nederlandse text weer te zien zijn.
public function track_trace_email( $order, $sent_to_admin, $plain_text, $email ) {
if ( $sent_to_admin ) return;
if ( in_array( $email->id, array('wc_sa_ordersent', 'wc_sa_ordersend-invoice-1', 'wc_sa_ordersend-invoice-2') ) ) {
$order_data = $order->get_data();
$tracktrace_links = WooCommerce_MyParcel()->admin->get_tracktrace_links ( $order_data['id'] );
if ( !empty($tracktrace_links) ) {
$email_text = __( 'You can track your order with the following PostNL track & trace code:', 'woocommerce-myparcel' );
$email_text = apply_filters( 'wcmyparcel_email_text', $email_text, $order );
?>
<p><?php echo $email_text.' '.implode(', ', $tracktrace_links); ?></p>
<?php
}
}
}
Het wat er aangepast is, is You can track your order with the following PostNL track & trace code
om de &
zitten nu spaties.
Mocht dit niet helpen dan hoor ik dat graag van je.