• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

WooCommerce Email Template Customizer

WooCommerce Email Template Customizer v.1.2.4

No permission to download
Hie no update on codecanyon as yet.. will update as soon as i see it.
 
  • Like
Reactions: omid020
ntn updated WooCommerce Email Template Customizer with a new update entry:

WooCommerce Email Template Customizer 1.0.1.4

**1.0.1.4 - 2021.03.10 **/
- Fixed: Align image in Text Editor
- Updated: Width of template
- Updated: Order detail - Image width of horizontal style
- Updated: Responsive point
- Updated: Hide shipping address if shipping method is local pickup
- Fixed: Keep format of note to customer
- Updated: Add Attachment files
- Updated: Order subtotal component option: hide shipping row when shipping is free

Read the rest of this update entry...
 
If you try to edit a design, theres some JS issue I think whichdoesnt let you center elements or switch tabs in the left options column

Ended up using WooMail as an alternative.
 
  • Like
Reactions: Chijioke
I enabled two payment plans at website one is direct bank transfer and another is COD. when I edit template it works only for COD and when customer choose Direct Bank Transfer it sent email for default template, it should work for all payment methods.
 
Does anyone know how to auto-insert tracking numbers in the customer order status "completed" email?
 
Does anyone know how to auto-insert tracking numbers in the customer order status "completed" email?

If the tracking number is part of the Order Metadata you can do it by adding a custom function to the functions.php. For example like this:

add_action( 'woocommerce_email_after_order_table', 'add_trackingnr_meta', 10, 3);

function add_trackingnr_meta( $order_obj, $sent_to_admin, $plain_text )
{

// Important: You need to know the Metaname !!tracking_number!!! is just an example
$is_trackingNr = get_post_meta( $order_obj->get_order_number(), 'tracking_number', true );

// we won't display anything if its empty
if( empty( $is_trackingNr ) )
return;

// Html Email
if ( $plain_text === false )
{
echo '<h2>Trackinginformations</h2>
<ul>
<li><strong>Tracking Number:</strong> ' . $is_trackingNr . '</li>
</ul>';
}
//Plaintext Email
else
{
echo "\n Trackinginformations\n
<strong>Trackingnumber: </strong>$is_trackingNr\n\n";
}
}

Just to clearify this function will always send a Tracking Number if its set and Part of the Ordermeta.
It will not check the Order State(completed eg).
 
Babak updated WooCommerce Email Template Customizer with a new update entry:

WooCommerce Email Template Customizer v1.0.2

Download WooCommerce Email Template Customizer v1.0.2 Nulled Free
v1.0.2 - 2021.09.09

- Updated: Add do shortcode
- Updated: Order detail template overridable
- Updated: Font-family
- Updated: Center on mobile option for text element
- Updated: Fix button on outlook
- Updated: Show custom css on preview
- Updated: Remove product link in order detail
- Updated: Add shortcode {from_email}

Read the rest of this update entry...
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock