kreamweb
1/14/2016 - 8:14 AM

Change text browse list in YITH WooCommerce Request a Quote

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;
}