Advertisement
inovve

Wordpress Custom Logo Payment Gateway

Sep 3rd, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. function cod_gateway_icon( $gateways ) {
  3. if ( isset( $gateways['cheque'] ) ) {
  4. $gateways['cheque']->icon = get_stylesheet_directory_uri() . '/images/mb.png';
  5. }
  6.  
  7. return $gateways;
  8. }
  9.  
  10. add_filter( 'woocommerce_available_payment_gateways', 'cod_gateway_icon' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement