Skip to content

Instantly share code, notes, and snippets.

View Web-Assembler's full-sized avatar

Anthony Vickery-Hartnell Web-Assembler

View GitHub Profile
@melvinstanly
melvinstanly / woocommerce-email-title.php
Last active March 11, 2021 22:36
Easy tricks in woocommerce emails
<?php
// Change email titles (Email template name in Woocommerce Settings Admin)
// woocommerce -> settings -> emails
add_filter( 'woocommerce_email_title', 'change_woocommerce_email_title', 10, 2 );
function change_woocommerce_email_title( $email_title, $email ){
$domain = "woocommerce"; // The text domain
@lukecav
lukecav / functions.php
Created August 14, 2018 13:50
Enable revisions on products in WooCommerce
add_filter( 'woocommerce_register_post_type_product', 'wc_modify_product_post_type' );
function wc_modify_product_post_type( $args ) {
$args['supports'][] = 'revisions';
return $args;
}