Skip to content

Instantly share code, notes, and snippets.

@NiklasHogefjord
Created February 17, 2015 13:58
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 NiklasHogefjord/3f4a8a12462252450149 to your computer and use it in GitHub Desktop.
Save NiklasHogefjord/3f4a8a12462252450149 to your computer and use it in GitHub Desktop.
WooCommerce, Payson Payment Gateway - Change the Payson Direct icon in checkout
<?php
/**
* WooCommerce - Payson payment gateway
* Change the Payson Direct icon in checkout
*
**/
function myprefix_change_payson_direct_icon($logourl) {
return get_stylesheet_directory_uri(). '/images/my-payson-icon.png';
}
add_filter('payson_direct_icon', 'myprefix_change_payson_direct_icon');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment