Skip to content

Instantly share code, notes, and snippets.

@vanbo
Last active August 29, 2015 14:08
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 vanbo/77967850e491d37287ac to your computer and use it in GitHub Desktop.
Save vanbo/77967850e491d37287ac to your computer and use it in GitHub Desktop.
wc wirecard icon filter
add_filter( 'woocommerce_wirecard_icon', 'wirecard_filter_gateway_icon' );
function wirecard_filter_gateway_icon( $icon ) {
$icon = 'path/to/your/gateway/icon.png';
return $icon;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment