No content to show
User Activity
11-12-2024
Try something like this. {%- if shop.locale == 'ar' -%}
<html class="no-js" lang="{{ request.locale.iso_code }}" dir="rtl">
{%- else -%}
<html class="no-js" lang="{{ request.locale.iso_code }}">
{%- endif -%}
08-23-2024
How where you able to move the code to server-side validation? You don't have access to a liquid checkout file?
You will need to create an ui-extensions app. I expect you know how to do that. Use regex to search for the special characters. A solution could look like this for address1 and address2 but could be used for the other objects in useShippingAddress()....
08-20-2024
You can split up the products loop in two. First run all avaliable products then all that are not.Open main-collection-product-grid.liquid and find the <ul id="product-grid>... Then copy the for loop and paste the new one after the first one. The fi...
04-17-2024
Thx for taking the time to answer. My initial thought was that I already tried that and that I had set the variable to SHOPIFY_APP_URL and not HOST when working in the local environment. But you were right. Setting the variable name to SHOPIFY_APP_U...
I have followed the "deploy your app" docu. https://shopify.dev/docs/apps/deployment/web after creating a blank remix app. I'm unable to deploy the app to fly, heroku and DigitalOcean. All returns same error. -04-16 11:58:47] > start
[2024-04-16 11:5...
I would like to update the shipping address post-checkout if some conditions are met. Currently, I'm trying to make it happen with an extension app and a "purchase.thank-you.block.render" target. But is that possible? Seems like I'm only able to get ...
03-26-2024
Thx. I thought assigning a function to a const would not call the function until the const was called. I was wrong. For reference to others I solved it like this. function Extension() {
const [shop, setShop] = useState('');
const deliveryGro...
03-21-2024
Hope someone can help me out here and explain to me the behavior of React. import {
reactExtension,
useApplyShippingAddressChange, useDeliveryGroups, useDeliveryGroup
} from '@shopify/ui-extensions-react/checkout';
// Choose an extension ta...
Hi TritonJK If you add flex-direction: column;to your parent div your elements will stack.
Hi To access the blocks you will need to loop through them. {%- for block in section.blocks -%}{%- endfor -%} This is not the case for section.settings
Another solution here:https://community.shopify.com/c/shopify-design/how-to-make-add-to-cart-button-sticky-on-product-pages-for/m-p/2409933/highlight/true
01-15-2024
I would structure my GraphQl request as shown in the documentation and not assign "variables" as a constant but as a key within the query. Like this: const data = await client.query({
data: {
"query": `mutation customerUpdate($input: CustomerIn...
01-15-2024
Just posting this here as well since I had the same issue.Don't forget to add your hosted domain mail to your spf record. Replace your@hostedemail.com with the email your store uses to send emails to your customers "v=spf1 include:_spf.your@hostedem...
For everyone look for a possible answer to this as well. Don't forget to add your hosted domain mail to your spf record. Replace your@hostedemail.com with the email your store uses to send emails to your customers "v=spf1 include:_spf.your@hostedema...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
717 | 03-26-2024 04:05 AM | |
2011 | 01-01-2024 04:21 AM | |
1302 | 12-13-2023 08:57 AM |