Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Last active July 19, 2017 03:37
Show Gist options
  • Select an option

  • Save pippinsplugins/4704632 to your computer and use it in GitHub Desktop.

Select an option

Save pippinsplugins/4704632 to your computer and use it in GitHub Desktop.
Add custom payment method icons to Easy Digital Downloads
<?php
/**
* Register the payment icon
*/
function pw_edd_payment_icon($icons) {
$icons['url/to/your/image/icon.png'] = 'Name of the Payment Method';
return $icons;
}
add_filter('edd_accepted_payment_icons', 'pw_edd_payment_icon');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment