No content to show

User Activity

Look for a list of cash sales by going to Analytics->Reports, search for Finance Summary, filter the date range, then on the right, there should be a box titled Payments with Cash sales and other payment methods. Clicking cash will send you to the li...
Hello! This alone shouldn’t affect how your links are opening. Links will open in a new tab when they have target="_blank" within the href element, like: <a href="https://www.freecodecamp.org/" target="_blank" rel="noopener noreferrer">freeCodeCamp</...
This should not affect seo. I found this article helpful: https://developers.google.com/search/blog/2008/09/dynamic-urls-vs-static-urls
I don't think there is a direct way to add metafields to the homepage ie. with blocks or sections. You can, however, add a custom liquid section. Here you could reference your metafield data. To access the metafield data, you'd input:  {{ shop.metaob...
I've been looking for similar functionality. I don't think there is a direct solution. From what I understand, there is no schema setting type metaobject. Maybe Shopify will add that in the future. For now, there are a few workaround solutions I coul...
It's tough to say without seeing your theme's code exactly, but it looks like there is a forloop issue. I'm guessing the code says to do something like: ->for each ingredient, output accordion heading titled 'ingredient' and output ingredient where i...
Hey there, You would put this code at the end of your theme’s JavaScript file, or better yet in a custom JavaScript file for your store. You should be able to copy the wrapSections function exactly as written. And then call the function with the last...
When you set up your navigation links, you can input any URL. This is how you could link to a filtered collection. Assuming you have your filters set up with the new Shopify Search & Discovery App, here's an example. Example:Collection title: all,Fil...
I found a work-around using Javascript. You can create a function that will create a new div element, place it before the first child element you want to wrap, then you can append the child elements you want to wrap to the newly created parent div. H...
Update on my progress: I've done away with the subdomains for now, connected domains domain1.com and domain2.com, both domains connected to shopify, with shopify's option for redirect disabled. In the theme.liquid file, at the very beginning of the <...
My ultimate goal is to load a seemingly "different store" when the user goes to a sub.maindomain. What I understand so far:- When the user goes to sub.maindomain.com, they see the same content as maindomain.com- The carts are separate between sub.mai...
This is the code that I got to work...{% if request.host == 'maindomain.com' %}{{ content_for_index }}{% elsif request.host == 'subdomain.maindomain.com' %}{% layout 'theme.alternate' %}{% endif %} Now I am trying to figure out a way to customize the...
Hi there,I've read that it is possible to load a different theme.liquid file (such as theme.alternate.liquid). I'd like to do so for a subdomain. I was thinking of using something like this in the index.liquid file:{% if request.host == 'maindomain.c...
This widget could not be displayed.
This widget could not be displayed.