• Resolved marguy1

    (@marguy1)


    Hello, great idea for a plugin, and it seems to work really well. I just installed it and will come back with a review and a donation soon. I have a question please, is there a way (through CSS or otherwise) to remove the ‘Wise’ logo from the thank you page and order confirmation email? I don’t want my customers to know that I’m using ‘Wise’ services. I would be glad to donate an appropriate amount for your help with this, thank you.

    • This topic was modified 2 years, 10 months ago by marguy1.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author alx359

    (@alx359)

    Hello @marguy1 and thanks for your question.

    Please try with this snippet of code into your functions.php:

    add_filter( 'woocommerce_gateway_icon', 'my_gateway_icon_wise', 10, 2 );
    function my_gateway_icon_wise( $icon_html, $gateway_id ) {
        if( $gateway_id == 'ew_wise' ) { 
            $icon_html = '';
        }
        return $icon_html;
    }
    Thread Starter marguy1

    (@marguy1)

    Hello Alx359, thanks a lot of your quick reply. Your code snippet worked flawlessly. I’ve sent a donation for your great work.

    • This reply was modified 2 years, 10 months ago by marguy1.
    Plugin Author alx359

    (@alx359)

    Thank you very much, @marguy1, much appreciated! Glad the code snippet worked for you on the first try.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Wise Logo’ is closed to new replies.