Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save OscarAbadFolgueira/57ae89fa824db4cf1061 to your computer and use it in GitHub Desktop.
Save OscarAbadFolgueira/57ae89fa824db4cf1061 to your computer and use it in GitHub Desktop.
This WooCommerce code snippet enables you to change de paypal icon-image on checkout page
<?php
/**
* This WooCommerce code snippet enables you to change de paypal icon-image on checkout page.
*
* Author: Oscar Abad Folgueira
* Author URI: http://www.oscarabadfolgueira.com
*
* You can copy this snippet and paste in your functions.php or you can build your own plugin
*
* Change the image for other you want.
*/
// This funcition returns the url of the new paypal image
function oaf_change_paypal_icon_image() {
return "http://www.oscarabadfolgueira.com/wp-content/uploads/2016/03/icono-paypal-tarjetas.png";
}
add_filter( 'woocommerce_paypal_icon', 'oaf_change_paypal_icon_image' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment