No content to show
User Activity
03-30-2025
I didn't use an app. I used Shopify’s native language selector and wrote a conditional statement that added a class (.rtl) to the <body> tag if, for example, Arabic was selected. Then I went through the site and wrote CSS for all elements that weren'...
The issue could be thatquick-add.jsand/orproduct-form.jsis missing or not loaded. Check your network tab in the browser console.You can also check the hidden inputclass="product-variant-id"just above the add to cart button. If it has disabled it's pr...
02-20-2025
You can setup infinite scrolling. Here is one way to do it. https://community.shopify.com/c/shopify-discussions/how-do-i-add-an-infinite-scroll-on-collection-pages-please-dawn/m-p/1839519
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
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
975 | 03-26-2024 04:05 AM | |
2390 | 01-01-2024 04:21 AM | |
1935 | 12-13-2023 08:57 AM |