No content to show
User Activity
Thank you for this comment, I agree, I tried all possible ways to print the line item as based on their documentation: https://shopify.dev/docs/api/liquid/objects/line_item but none of the fields listed is available other than the fields your link sh...
None of the solution worked for me, I tried all 7 possible entries on a line item to show it's price but it doesn't work: {% assign final_price = nil %}{% for item in order.line_items %} {% if item.sku == line_item.sku %} {% assign final_p...
06-02-2023
2023 answer: your files are on the left side bar under Content > Files or at the URL admin/content/files
I can't find a direct answer to my question in the docs. is there any way that customer can update their marketing preference if I build a UI from the theme? Meaning, regardless of the front-end capabilities of my theme, does shopify API allow to a l...
did you find any solution to this issue?
Had the same issue, resolved it by changing the import from this: {{ 'custom.js' | asset_url | script_tag }} to this: <script defer src="{{ 'custom.js' | asset_url }}"></script> so you can put all attributes your like on the script tag. Overall, ...
Hi, I have successfully uploaded a font onto Shopify with woff/woff2 files. I wanted now to display this font like the others available on the theme Settings > Typography section, so that other people who are not developers can change the font when t...
Hi, I have the following file assets/ac.js.liquid with the following code: {% if customer %}
vgo('setAccount', '123456789');
vgo('setTrackByDefault', true);
vgo('setEmail', '{{ customer.email }}');
vgo('process');
{% else %}
vgo('...