Created
March 11, 2016 20:02
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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