Created
October 15, 2016 14:43
-
-
Save thadallender/39ff0004715b592037ce9f89cf99b138 to your computer and use it in GitHub Desktop.
Theme.Works change Purchase text
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 | |
/** | |
* Changes the purchase text in Theme.Works e-commerce homepage section | |
*/ | |
function tw_change_ecommerce_purchase_text() { | |
return 'bestel'; | |
} | |
add_filter( 'tw_ecommerce_purchase_text', 'tw_change_ecommerce_purchase_text' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment