Home / Admin / Custom Payment Icon
Duplicate Snippet

Embed Snippet on Your Site

Custom Payment Icon

Register a custom payment icon to show on the checkout form.

Code Preview
php
<?php
function pw_edd_payment_icon( $icons = array() ) {
    $icons['url/to/your/image/icon.png'] = 'Name of the Payment Method';
    return $icons;
}
add_filter( 'edd_accepted_payment_icons', 'pw_edd_payment_icon' );

Comments

Add a Comment