No content to show
User Activity
I was able to figure this out thanks to a post here: https://blog.klaudsol.com/how-to-run-shopify-cli-in-aws-cloud-9/I was able to authenticate a Shopify partner account on "Ubuntu 22.04.3 LTS" AWS EC2 instance. Steps below:1. Install Node.js and npm...
07-19-2023
On Shopify Plus with access to checkout.liquid: Add at the bottom of the <head> tag or right after <body> tag:{% comment %}Disable Local pick up for products with 'no-pick-up' tag{% endcomment %}
{% for item in checkout.line_items %}
{% if ite...
07-19-2023
Use{{ checkout.line_items[0].product.title }}to get the title of the first product in the cart or iterate though all line items like:{% for item in checkout.line_items %}
<script>
console.log('{{item.product.title}}');
</script>
{% endfor %}*...