Replace PayPal Icon in WooCommerce

Here’s a quick and simple snippets for those of you who dislike the default PayPal icon used in WooCommerce plugin and want to switch it with another image.

// Replace PayPal icon in WooCommerce
function risbl_paypal_checkout_icon() {
 return 'https://www.paypalobjects.com/webstatic/mktg/logo-center/logo_betalen_met_paypal_nl.jpg'; // write your own image URL here
}
add_filter( 'woocommerce_paypal_icon', 'risbl_paypal_checkout_icon' );

Simply replace the image URL with your own custom image URL.

 965 total views,  1 views today

Leave a Comment

Your email address will not be published. Required fields are marked *