No content to show
User Activity
I have a Shopify function created, as a cart and checkout validation extension. It's attempting to require first name, last name, and phone number input fields. I know there's a native way to do this in the Shopify admin settings, however, if you ena...
I have an extension that has 3 TextField components. However, when they are rendered, there is no vertical spacing at all between them. How can I add spacing between them, without using the divider component? I've tried BlockStack, though it didn't s...
Hey @musfiq11, did you ever figure this out? I’m running into this issue now.
07-11-2023
Hi, I need to make a checkbox required before clicking on "Pay Now". How can I change this extension's code to make it required? Thank you!import {render, Checkbox} from '@shopify/checkout-ui-extensions-react';
render('Checkout::Dynamic::Render', () ...
Thank you Vixnguyen, this worked exactly as I needed it to. I really appreciate your willingness to help!
Hi Vix,Thanks again for your help, it is really appreciated. I changed my code to incorporate your code snippet. However, I'm having difficulty listening to changes to the customer's chosen delivery method. I'm hoping you could provide any insight on...
Hi! Thank you so much for your reply. Are you able to provide a code snippet of how you would get the deliveryGroups object from the Storefront API?
I have a text field checkout ui extension that I'm looking to modify. I'm wondering how to utilize the deliveryGroups API to get the selected shipping method. This is my current code for my extension. Any help here would be greatly appreciated! impor...
06-13-2023
I've added a text input field via checkout ui extensions to my checkout. I would like to make the text input field required for the customer to fill out, if the customer selects a specific shipping method. I would really appreciate any insight on whe...
06-09-2023
Hi, I need to create a text input field via checkout UI extensions, but I'd like the input field to only be visible to customers with a certain tag. If anyone could help guide me in the right direction to making a text input field only visible to cus...
04-13-2023
Hi Paul, Thanks for your response. Attached is the image of the discount code input field. The store is not using an app. Our store is Shopify Plus, but we have not upgraded to checkout extensibility yet. We have customizations through checkout.liqui...
Hi, I'm looking for the location of the discount code input field in the theme code, I can't quite find it. I need to hide the discount code input field for users with a certain tag on them. I'm thinking of just a simple conditional rendering for the...
Hi, on my product-template.liquid section, I have a custom input field, where users input a unique identifier. This identifier is put as a property on the line item. I need to change the functionality of the addToCart button, where it will lowercase ...
03-02-2023
For checkout ui extensions, is it possible to add a textfield as a metafield/attribute on the checkout before the order is submitted, rather than sending an API request to modify the order info?Here is my current component:import React, { useState } ...