Home / Attachments / Kupon kódok megjelenítése az értesítő email-ekben
Duplicate Snippet

Embed Snippet on Your Site

Kupon kódok megjelenítése az értesítő email-ekben

Ezzel a kóddal megjeleníthetjük a vásárlás során felhasznált kupon kódokat az értesítő email-ekben. Az egyszerűbb és könnyebb használat érdekében használd inkább a HuCommerce bővítményt! Ez a funkció a HuCommerce bővítmény Email értesítések moduljában állítható be. https://www.hucommerce.hu

Code Preview
php
<?php
add_action( 'woocommerce_email_order_meta', function( $order, $sent_to_admin, $plain_text, $email ) {
	// Check if coupon is used in order
	if ( $order->get_used_coupons() ) {
		// Get the coupon codes used in the order
		$coupon_codes = implode( ', ', $order->get_used_coupons() );
		// Set the emails, where coupons will be displayed
		$targeted_emails = array(
			'new_order',
			'customer_on_hold_order',
			'customer_processing_order',
			'customer_completed_order'
		);
		// Check the email sent
		if ( in_array( $email->id, $targeted_emails) ) {
			if ( false === $plain_text ) { // For HTML emails
				echo '<p><strong>Beváltott kuponkód(ok):</strong> ' . $coupon_codes . '</p><br>';
			} else { // For plain text emails
				echo "Beváltott kuponkód(ok): " . $coupon_codes . "\n\n";
				echo "----------------------------------------\n";
			}
		}
	}
}, 10, 4 );

Comments

Add a Comment