• Resolved darkallman

    (@darkallman)


    Bij het handmatig toevoegen van de trackntrace aan emails krijg ik ipv de NL tekst de EN tekst.
    Hoe forceer ik de NL tekst?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Richard Perdaan

    (@richardperdaan)

    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.

    Thread Starter darkallman

    (@darkallman)

    Hoi Richard,
    Dit heeft helaas niet geholpen.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Engelse tekst’ is closed to new replies.