Posts

Showing posts with the label email-template

How to add a custom email functionality in woocommerce,wordpress for example new email template for shipping order

How to add a custom email template option in woocommerce Just copy and paste below code in your theme's functions.php <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly /**  * A custom shipping WooCommerce Email class  *  * @since 0.1  * @extends \WC_Email  */  if(!class_exists('WC_Shipping_Email'))  {     include_once WP_PLUGIN_DIR.'/woocommerce/includes/emails/class-wc-email.php' ; class WC_Shipping_Email extends WC_Email {     public function __construct() {     if ( ! class_exists('Emogrifier') ){             require_once( 'includes/emogrifier/Emogrifier.php' );         }     $this->id = 'wc_shipping_email';         $this->title = 'Shipping Order';         $this->description = 'Shipping Order Notification emails are sent ...