Viewing 15 replies - 1 through 15 (of 16 total)
  • Thread Starter matstone

    (@matstone)

    for the record, I have tried switching to a custom image but still receive the error.

    Plugin Contributor angelleye

    (@angelleye)

    Looks like you must be working with Payments Pro, right? Are you working with DoDirectPayment or PayFlow?

    Thread Starter matstone

    (@matstone)

    PayPal express checkout. I switched out default image next to text.

    Plugin Contributor angelleye

    (@angelleye)

    I’m sorry for the delay getting back to you.

    Do you have any plugins, by chance, that are doing anything with SSL connections? Or anything in your .htaccess file, maybe..??

    What your’e describing isn’t something I’ve had any other complaints about, and we are not using absolute https:// paths in that image code, so it’s odd that this would be happening.

    Please look into those possibilities and let me know.

    Plugin Contributor angelleye

    (@angelleye)

    I have not heard back from you on this, so I’m going to go ahead and close this ticket. If you have more questions or concerns, though, feel free to respond and I’ll get back to you.

    Hi,

    I am also facing a similar problem. All other paypal related buttons/icons appear to be fine apart from the one within checkout payment options. I’ve no SSL related plugins.

    Thanks

    Plugin Contributor angelleye

    (@angelleye)

    I think I may see what’s going on here. When people first visit your site does it use https:// and then switch to https:// when they reach the checkout page?

    Thanks for the reply. Yes, that’s spot on. I have the settings in woocommerce checkout as:

    (Ticked)Force secure checkout – Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required).

    (Unticked)Force HTTP when leaving the checkout

    Plugin Contributor angelleye

    (@angelleye)

    I’ve got this issue set to be fixed in our next update, but if you want to fix it for now you can open up the file at /classes/wc-gateway-paypal-pro-payflow-angelleye.php and look at line 21. That is where the image is getting set for that. You could just set it to the path on your server directly and that would fix it for now. Then when our update is released it will be addressed there, too, so you won’t have any problems when you update.

    If you need help with that you can place an order for premium support and we can do it for you. It may be a month or so before the next update is released.

    I’m facing this issue as well. Is there any word on when the next update will be released?

    Thank you!

    Plugin Contributor angelleye

    (@angelleye)

    This is resolved in the dev branch on our GitHub repo already. If you want to download it directly and use it ahead of time it should work well for you.

    Did this fix not make it into the 4/24 update? I’m on version 1.1.6.2 and have this problem with the Paypal Express image (not the ones at the top that are served by Paypal, just the one at the bottom.)

    Mixed Content: The page at ‘https://xxx/checkout/’ was loaded over HTTPS, but requested an insecure image ‘https://xxx/wp-content/plugins/paypal-for-woocommerce/assets/images/paypal-credit.png’. This content should also be served over HTTPS.

    Plugin Contributor angelleye

    (@angelleye)

    It will be included in our 1.1.6.3 update, but we’ve been a little bit delayed getting that update pushed because of some bugs we’ve found in our development branch on GitHub. We’re weeding those out and then we’ll get it released ASAP.

    Is there any chance you can simply paste the code?

    $image_path = WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/assets/images/paypal.png';

    I need this to read https not just http, how can this be achieved?

    I worked this out

    replaced

    $image_path = WP_PLUGIN_URL . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/assets/images/paypal.png';

    with

    $image_path = plugins_url('', __FILE__) . '/images/paypal.png';

    moved the images folder which is in /assets/images into /classes

    Works fine!

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘PayPal Express Checkout Image – Not HTTPS’ is closed to new replies.