E-Commerce

Shopify: How to find orders containing bundles in Shopify Flow?

If you want to find orders containing bundles in Shopify Flow and send an internal email, you can use the following steps. Go to Shopify Flow page on your store. Create a new flow. Select Trigger: Shopify > Start when: Order Created. Then + Add an action: Flow > For each item in order.lineItems. Then + Add a condition: Check if Line item group title not empty and exists. Then + Add an action: Send an internal email.

Shopify: Liquid Snippet for Loading CSS Asynchronously

Shopify recently added section.index to the Liquid API. This is a great addition that allows you to do things like selectively load CSS based on the section index. This is useful for things like loading CSS asynchronously, which can help improve your page speed scores. If you want to load CSS asynchronously on Shopify, you can use this Liquid snippet: css.liquid {%- liquid assign css = css | default: false assign section_index = section_index | default: 3 -%} {%- if section_index > 2 -%} <link rel="stylesheet" href="{{- css | asset_url-}}" media="print" onload="this.

Shopify: How to Hide a Product, Page or Post from Search?

If you want to hide a product, page or post (item) from search or seo, here are steps. Go to Custom Data page on store Add a new definition with name SEO Visibility Change Namespace and key as ‘seo.hidden’ Add Integer type with one value and validations (min: 0, max: 1). Activate Storefront access. Then go to item and set SEO Visibility metafield value as 1. Done ✅ After these steps, Shopify will add this code to setted product / page / post etc.