woocommerce_paypal_icon filter-hookWC 1.0

Usage

add_filter( 'woocommerce_paypal_icon', 'wp_kama_woocommerce_paypal_icon_filter' );

/**
 * Function for `woocommerce_paypal_icon` filter-hook.
 * 
 * @param  $icon 
 *
 * @return 
 */
function wp_kama_woocommerce_paypal_icon_filter( $icon ){

	// filter...
	return $icon;
}
$icon
-

Where the hook is called

WC_Gateway_Paypal::get_icon_image()
woocommerce_paypal_icon
woocommerce/includes/gateways/paypal/class-wc-gateway-paypal.php 292
return apply_filters( 'woocommerce_paypal_icon', $icon );

Where the hook is used in WooCommerce

Usage not found.