-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only load Stripe JS on product page when required #2110
Only load Stripe JS on product page when required #2110
Conversation
Previously we always loaded the Stripe JS on relevant pages through the main gateway class, but now we have an additional check there to make sure that doesn't happen.
Previously we always loaded the Stripe JS on relevant pages through the main gateway class, but now we have an additional check there to make sure this doesn't happen.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks good, and it works as expected in both the product
and shortcode cart
pages... but it still loads Stripe in the blocks cart
.
Also, should we create an issue to do this for UPE?
Yeah, I hadn't thought about it there 🤔 It's less of a problem in the Blocks integration though since the Stripe JS SDK is loaded asynchronously. We should still make removing unnecessary JS an option.
I think we can just address this here 🤔 @DeanMarkTaylor brought up a point in #2065 (comment) that we've been discussing in p1635879932054100-slack-C01BZUL57SQ regarding how Stripe recommends we load the Stripe JS on all pages for fraud prevention purposes. Currently we only load the Stripe JS on Product, Cart, and Checkout pages, and I don't think we should change that. However, based on Stripe's own documentation we probably shouldn't be disabling the scripts by default. I think the best path forward would be to introduce a filter that will allow merchants to disable the Stripe JS on product and cart pages when the PRBs are not loaded. We'll still load the Stripe JS by default to follow Stripe's recommendation on loading the script on multiple pages for fraud prevention purposes, but merchants that are willing to accept the risk of potentially increased rates of fraud can disable the script entirely. |
These filters will only be applied when the PRBs are disabled on the product and cart pages. This will give merchants the option to not load the extra JS when they're not using the PRBs on those pages. Stripe's JS includes some fraud prevention mechanisms, so disabling the scripts using these filters does increase the risk of successul fraud on a merchant's store, but that's something merchants will have to decide on their own.
Only applies on Product and Cart pages when PRBs are disabled.
includes/payment-methods/class-wc-stripe-upe-payment-gateway.php
Outdated
Show resolved
Hide resolved
…ages-when-required
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
…ages-when-required
@diegocurbelo I'm unable to reproduce the issue 🤔 What versions of WP/WC/Blocks are you using?
Ah yeah, I can reproduce this. I'll look into that! Nice catch! |
@diegocurbelo It seems maybe we can't detect this for the blocks integration? When I'm on the page with the cart block (designated as the Cart page) both This is definitely less of a problem with the Blocks integration because the Stripe JS is loaded asynchronously via the Stripe SDK npm package using If we only rely on the settings (the result from All in all it looks like we may have to just not apply the filter for the blocks integration? What do you think? |
I agree... The JS loads asynchronously in that case |
…ages-when-required
The function used to retrieve the script handles is run at a point where the block hasn't been loaded, so we can't detect whether we're on a cart or product page. As such we can't make an informed decisions on whether or not to load the script. The script is loaded asynchronously in the blocks checkout though, so this shouldn't be degradation in performance as it relates to the issue reported in #2065.
The UPE payment_scripts() function is not called on product pages, and as such it is not necessary to check for that condition when unloading the Stripe JS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks good... and tests well 🚢 🚢
Changes proposed in this Pull Request:
Fixes #2065
Testing instructions
git switch develop
.git switch fix/2065-only-load-stripe-js-on-product-pages-when-required
Post merge