-
Notifications
You must be signed in to change notification settings - Fork 373
All changes to pre-existing recipes #3205
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
base: kd-2-5
Are you sure you want to change the base?
Conversation
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
4a58da5 to
d9de928
Compare
| #### File: /app/routes/collections.$handle.tsx | ||
|
|
||
| ```diff | ||
| @@ -4,7 +4,10 @@ import {getPaginationVariables, Analytics} from '@shopify/hydrogen'; |
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.
Again, these deletions look unintentional...
| productOptions={productOptions} | ||
| - selectedVariant={selectedVariant} | ||
| + selectedVariant={combinedListing ? selectedVariant : undefined} | ||
| + selectedVariant={combinedListing ? undefined : selectedVariant} |
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.
Was this wrong all along?
| 3. On the [Products](https://admin.shopify.com/products) page, open any products that will be sold as subscriptions and add the relevant subscription plans in the **Purchase options** section. | ||
| The Hydrogen demo storefront comes pre-configured with an example subscription product with the handle `shopify-wax`. | ||
|
|
||
| ### Step 1: app/components/CartLineItem.tsx |
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.
Not sure what happened here, but this wasn't meant to be step 1 (step 1 already exists above). It was originally step 3.2. The code diff doesn't appear to have changed though
| precision | ||
| } | ||
| } | ||
| fragment SubscriptionDiscountFragment on SubscriptionDiscount { |
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.
This was lost but all since restored
| export default function Collection() { | ||
| const {collection} = useLoaderData<typeof loader>(); | ||
|
|
||
| + // Manually filter out combined listings from the collection products, because filtering |
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.
Yeah this was definitely unintentional I'd say

WHY are these changes introduced?
Fixes #0000
WHAT is this pull request doing?
HOW to test your changes?
Post-merge steps
Checklist