Created
August 1, 2016 20:14
-
-
Save thadallender/9ae05feb5f2b599fb65347ee02843bf7 to your computer and use it in GitHub Desktop.
Sell Media - Filter "Manual 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 | |
/** | |
* Filter the "Manual Purchase" text shown on the Checkout page | |
*/ | |
function sell_media_manual_purchases_filter_text(){ | |
return 'Cash/Check'; | |
} | |
add_filter( 'sell_media_manual_purchases_text', 'sell_media_manual_purchases_filter_text' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment