Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created May 11, 2016 09:49
Show Gist options
  • Select an option

  • Save kreamweb/91ab33617ba1f694d0e488fb67a733be to your computer and use it in GitHub Desktop.

Select an option

Save kreamweb/91ab33617ba1f694d0e488fb67a733be to your computer and use it in GitHub Desktop.
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';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment