Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created January 19, 2016 09:32
Show Gist options
  • Save kreamweb/7a7df96c7190d9a76f43 to your computer and use it in GitHub Desktop.
Save kreamweb/7a7df96c7190d9a76f43 to your computer and use it in GitHub Desktop.
Change text 'Prodcut Added' in YITH WooCommerce Request a Quote
<?php
add_filter('yith_ywraq_product_added_to_list_message', 'ywraq_change_product_added');
function ywraq_change_product_added( $text ){
$text = "Done!";
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment