kreamweb
5/11/2016 - 9:49 AM

change the label to the button "Quote" in Remy Theme

change the label to the button "Quote" in Remy Theme

<?php


add_filter( 'ywraq_product_add_to_quote', 'custom_quote_button_text', 12, 1 );
/**
 * Change the label to the button "Quote" in Remy Theme
 * @param $default
 *
 * @return string
 */
function custom_quote_button_text( $default ){
	return 'Add to Inquiry List';
}

?>