Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thadallender/9ae05feb5f2b599fb65347ee02843bf7 to your computer and use it in GitHub Desktop.
Save thadallender/9ae05feb5f2b599fb65347ee02843bf7 to your computer and use it in GitHub Desktop.
Sell Media - Filter "Manual Purchase" text
<?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