Created
January 19, 2016 09:32
-
-
Save kreamweb/7a7df96c7190d9a76f43 to your computer and use it in GitHub Desktop.
Change text 'Prodcut Added' in YITH WooCommerce Request a Quote
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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