Skip to content

Instantly share code, notes, and snippets.

@Edwynn
Forked from InpsydeNiklas/functions.php
Created March 7, 2024 01:31
Show Gist options
  • Save Edwynn/f1bdd5df6df0f641ea7021ee78797bb9 to your computer and use it in GitHub Desktop.
Save Edwynn/f1bdd5df6df0f641ea7021ee78797bb9 to your computer and use it in GitHub Desktop.
display icon for ppcp-gateway in the checkout
function woocommerce_paypal_payments_gateway_icon( $icon, $id ) {
if ( $id === 'ppcp-gateway' ) {
return '<img src="https://www.paypalobjects.com/webstatic/mktg/Logo/pp-logo-100px.png" alt="PayPal Payments" />';
} else {
return $icon;
}
}
add_filter( 'woocommerce_gateway_icon', 'woocommerce_paypal_payments_gateway_icon', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment