-
-
Notifications
You must be signed in to change notification settings - Fork 72
Use Stripe Checkout Element #300
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
15568bf
Integrate Stripe Connect proxy server for secure OAuth flow
superdav42 bd87731
Optimize Stripe OAuth performance and remove application fees
superdav42 c431f91
Remove platform_client_id - now handled by proxy server
superdav42 44f23c3
fix stripe
superdav42 b0155af
Merge branch 'main' of github.com:Multisite-Ultimate/ultimate-multisi…
superdav42 f980d7c
Hide redundant billing address fields when Stripe gateway is selected
superdav42 4f14632
Merge branch 'main' into stripe-claude
superdav42 18efb0b
Add Stripe checkout and subscription renewal E2E tests
superdav42 2e044f4
fix: use env var check instead of secrets context in workflow if cond…
superdav42 30e8f1c
fix: override wp-env plugins in CI to exclude missing domain-seller a…
superdav42 c5937c4
fix: rewrite wp-env.json in CI to strip addons and mappings
superdav42 568a608
Fix invoice PDF download failing with expired nonce
superdav42 01b2fae
Fix Stripe checkout test mock missing latest_charge field
superdav42 76b6b62
change the validation rules
superdav42 966176e
add attachement pdf in test emails
superdav42 7454593
Only check for memory errors
superdav42 4a125da
Merge branch 'main' into stripe-claude
superdav42 e58d57c
Actually get stripe to work
superdav42 52f9f17
fix test
superdav42 0a6982a
Fix duplicate Country/ZIP fields on Stripe checkout
superdav42 caf0854
Update tests/e2e/cypress/fixtures/process-stripe-renewal.php
superdav42 1ec49d7
Update inc/managers/class-gateway-manager.php
superdav42 827e78e
Move payment status CSS from inline to checkout.css
superdav42 2da2f14
Merge branch 'main' into stripe-claude
superdav42 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Consider also checking
STRIPE_TEST_PK_KEYin the skip guard.Line 176 only checks
STRIPE_TEST_SK_KEY, but the Cypress tests also needSTRIPE_TEST_PK_KEY(forwarded via config). If only the secret key is configured but the publishable key is missing, tests would run but likely fail during gateway setup.Suggested fix
📝 Committable suggestion
🤖 Prompt for AI Agents