Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created January 14, 2016 08:14
Show Gist options
  • Save kreamweb/0dc3c5eecf7d6cfa606f to your computer and use it in GitHub Desktop.
Save kreamweb/0dc3c5eecf7d6cfa606f to your computer and use it in GitHub Desktop.
Change text browse list in YITH WooCommerce Request a Quote
<?php
add_filter('ywraq_product_added_view_browse_list', 'ywraq_change_browse_list');
function ywraq_change_browse_list( $text ){
$text = "View the list";
return $text;
}
@kreamweb
Copy link
Author

Add this filter in the file functions.php of your theme

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment