Created
May 11, 2016 09:49
-
-
Save kreamweb/91ab33617ba1f694d0e488fb67a733be to your computer and use it in GitHub Desktop.
change the label to the button "Quote" in Remy Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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