Skip to content

Instantly share code, notes, and snippets.

@Sirvijver
Created January 10, 2023 11:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sirvijver/8fa5d567951ee8ed6bf6d98fa251b0d1 to your computer and use it in GitHub Desktop.
Save Sirvijver/8fa5d567951ee8ed6bf6d98fa251b0d1 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