Insonsistent PayPal button behavior for subscriptions on cart (6639 v2)#4554
Merged
Conversation
…kout for multi-subscription carts
Dinamiko
requested review from
AlexP11223,
Narek13,
danieldudzic,
mmaymo and
stracker-phil
as code owners
July 24, 2026 10:11
Test using WordPress PlaygroundThe changes in this pull request can be previewed and tested using a WordPress Playground instance. 🔗 Test this pull request with WordPress Playground What's included:
Login credentials:
Plugin Details:
🤖 Auto-generated for commit 72507f9 • Last updated: 2026-07-24T10:12:05.804Z |
stracker-phil
approved these changes
Jul 24, 2026
stracker-phil
left a comment
Collaborator
There was a problem hiding this comment.
Addresses two issues:
- Fix the PayPal button appearance depending on subscription support
- Keep the mini cart in sync with block data via a new Redux subscriber
Both changes look solid 👍
stracker-phil
deleted the
dev/PCP-6639-v2-insonsistent-pay-pal-button-behavior-for-subscriptions-on-cart
branch
July 24, 2026 17:40
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
On block cart/checkout, a free-trial sub + a paying sub hid the PayPal button and payment method (classic worked). Cause: 2+ subscriptions make WooCommerce require the
multiple_subscriptionsfeature, but the block only declared['products','subscriptions'], so Blocks filtered PayPal out.This PR passes the gateway's real supported features from PHP (PayPalPaymentMethod.php → supportedFeatures) and have
checkout-block.jsdeclare those instead of a hardcoded list, somultiple_subscriptionsis included.