Skip to content

Instantly share code, notes, and snippets.

View ivanvmoreno's full-sized avatar
❄️

Iván Moreno ivanvmoreno

❄️
View GitHub Profile
@ivanvmoreno
ivanvmoreno / functions.php
Last active May 11, 2017 11:56 — forked from ChromeOrange/functions.php
Custom Add To Cart Messages
<?php
/**
* Custom Add To Cart Messages
* Add this to your theme functions.php file
**/
// woocommerce_add_to_cart_message is now wc_add_to_cart_message
add_filter( 'wc_add_to_cart_message', 'custom_add_to_cart_message' );
function custom_add_to_cart_message() {
global $woocommerce;