Broken logo image on checkout
-
The logo image is broken on checkout:
This is happening because a space is inserted before the GET args, creating a URL like
https://mysite.com/wp-content/plugins/bitpay-checkout-for-woocommerce/images/BitPay-Accepted-CardGroup.svg%20id=bitpay_logo
I was able to fix it in my local site by patching
plugins/bitpay-checkout-for-woocommerce/build/BitPayLib/class-wcgatewaybitpay.php
. I changed line 85 (insideget_icon_on_payment_page()
) to:return add_query_arg('id', 'bitpay_logo', $settings->get_payment_logo_url());
Hoping to see it fixed in a future version ??
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- You must be logged in to reply to this topic.