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