Tagged Questions
0
votes
0answers
16 views
Shopify liquid - wish list not working
I have implemented this: https://github.com/zakhardage/Shopify-Wish-List
To get a wish list on my shopify website www.spoiltpets.com
Go to any product and click add to wish list (once logged in)
...
0
votes
1answer
23 views
How to assign multiple customer tags in Shopify?
I am trying to assign multiple custom tags to a customer who registers for my store in Shopify.
Here is what I have so far but it assigns over the first tag with the second one, I need to find a way ...
0
votes
2answers
40 views
forloop.index as a condition in an if-statement in shopify
I'm trying to do something very simple. I wrote:
{% for product in collection.products %}
{{ if forloop.index = 1 }}
Hello World!
{{ endif }}
{% endfor %}
Problem:
"Hello World!" ...
1
vote
0answers
28 views
Related Products Shopify Liquid
I'm trying to determine the correct Shopify Liquid syntax for outputting a list of products that match the same tag as the current product.
This is to appear in a "Related Products" box on the ...
0
votes
1answer
52 views
Assigning a variable within a statement in liquid
Is there a way to have a variable within a statement in liquid so that something like the following:
{% assign somevar = 'about-us' %}
{{ pages.somevar.content }}
would result in the same output as ...
1
vote
1answer
224 views
Custom fields for Shopify User Registration Form
I can't find any documentation on how to add custom fields for the user registration forum so I tried something but didn't work:
<div class="single-full-width customer">
<div ...
0
votes
1answer
112 views
Shopify: Pass a Search Query String to Landing Page Search Function?
I'm currently managing a Google AdWords account for a cookie cutter company and have dreamed up an idea to get the most efficient conversions out of our campaign landing pages, but it will take some ...
-1
votes
1answer
46 views
Transaction count for single product using shopify api [closed]
I am using Shopify to build a group buying site so I want to be able to display a count of transactions for each product. As far as I know, there is no way to do this with liquid.
I can't seem to ...
1
vote
1answer
51 views
How can i implement signup facility in shopify store?
I was found in shopify wiki docs but dont know how to implement signup.
0
votes
1answer
87 views
Various background images failing to load via CSS stylesheet in Shopify
I am having a very strange problem that I can't seem to figure out.
I have several images that I am using as background images in the style sheet galleria-fullscreen.css.liquid. For some reason, some ...
0
votes
1answer
77 views
Shopify: How do I ensure my application proxy content will work for all Templates?
I am building an application proxy for Shopify.
the documentation (http://api.shopify.com/app_proxy.html) says...
If the HTTP response from the Proxy URL has Content-Type: application/liquid set ...
0
votes
3answers
203 views
Shopify liquid: How can I conditionally include snippets in Shopify liquid?
I would like to include a snippet in a template but only if the snippet file exist. Is there any way I can do it?
Now I'm just using:
{% include 'snippetName' %}
But this throws the error:
Liquid ...
1
vote
0answers
109 views
Using jQuery to edit Shopify variants
Alright so I'm trying to figure out how to make content appear and disappear based on the product variant someone chose, and with the help of some people here, I managed to get the jQuery code that I ...
0
votes
1answer
79 views
How to get all products of a Shopify shop?
In my theme development, I don't find the way to get all the products of my shop.
Although, I can retrieve all the collections with the variable collections (exemple: {% for c in collections %}).
0
votes
0answers
53 views
Shopify liquid {{% for order in customer.orders %}} limits output of 20 orders?
I am trying to output all customer orders using the for loop {% for order in customer.orders %}. This only displays 20 orders and there is no way to pull the additional orders from the backend. I ...
0
votes
1answer
83 views
How to grab all items in a Shopify Collection
I'm making a sidebar for a Shopify store for a client. It will will display all of the items from a specific collection. The collection is called featured, and my client will use the CMS to specify ...
1
vote
1answer
113 views
Can Shopify app automatically inject liquid code inside shop's theme?
I'm building a Shopify application and I'm interested in automatically adding a liquid content into the shop's theme.
1
vote
1answer
209 views
Update/Remove cart attributes in Shopify
I am using cart attributes to add extra information for each product to the cart (from the product page). I am specifically using cart attributes over line item properties because the client needs to ...
1
vote
1answer
102 views
Is it possible to add facebook icons on the blog page of a Shopify site, inside of the blog loop?
I want a user to be able to like an individual article on the blog page of a Shopify site. I have added my social media icons inside of the blog loop.
blog.liquid
{% for article in blog.articles ...
1
vote
1answer
83 views
How do I retrieve a specific product in Shopify Liquid?
I have a list of product handles, and I want to fetch the product based on this handle. It seems there is no way to tell Liquid to go and get a single product. I could do this with the API, but if I ...
0
votes
1answer
74 views
Shopify tablerow loop exiting early
I'm looping through my collection of frontpage products and generating a table. In the last row, I need to put some static content in the first table cell. I've been able to do that, but for some ...
1
vote
1answer
100 views
Add “items per page” drop down box in SHOPIFY
I'm building a web store on shopify. I want to add a drop down box on a page that displays my products where I can select number of items to display per page (i.e. 25, 50, 100).
Any suggestions on ...
1
vote
1answer
196 views
Can't create a link to a page in Shopify
I am trying to create a single link (inside a snippit) that will link to any given page but I can't figure out how to do it. I am using this general structure:
{{ 'Link Text' | link_to: X }}
I ...
0
votes
0answers
86 views
Shopify, accessing extended object attributes within liquid templates
I'm wanting to access the 'published_at' date of a collection within a liquid template.
The Wiki references the following attributes here, that does not include 'published_at':
...
0
votes
1answer
44 views
Output product collection into a table along with static element in Shopify
I need to output a collection of products into a table on my index page. What is the best way to do this? I was looking in the docs and found the tablerow stuff. The problem is, that products are ...
0
votes
1answer
119 views
Did liquid array accessors in shopify templates change recently?
For some reason this bit of liquid just stopped working in a site I did some months back:
{% assign packs = collections.packs.all_products %}
{{ packs[0].title }}
Accessing the array items in a for ...
0
votes
0answers
166 views
Can you pass values through the url in Shopify?
Juan
Hello I was hoping a Shopify expert could advise me.
I already have a collections template in use and I need to prepare this layout to work within Shopify as something supplementary to the ...
2
votes
1answer
93 views
Liquid error: undefined method `encode_json'
I'm getting an error "Liquid error: undefined method `encode_json'" when using the json filter for a collection. It worked fine in my test shop but not in my real shop. Any ideas?
This is my ...
1
vote
3answers
278 views
Shopify Liquid: How to only show a compare at price for a product variant if the compare at price exists?
I'm trying to show the compare at price for some product variants but I can't figure out how to only show it when there is compare at price for the variant that is greater than zero. It's showing ...
1
vote
1answer
87 views
Force template to build off of other layout
On Shopify, I'm currently trying to host a landing page for signups, and really don't want the default theme layout, which looks like this (ASCII art):
CART
XXLOGOXX
...
0
votes
1answer
272 views
How do I display all of my products on my home page using Shopify and Liquid?
Is there a simple snippet of Liquid markup I can use on my index.liquid page (home page) to display all of the products that I have and make each of those images a link to the respective product's ...
0
votes
1answer
226 views
Shopify Liquid metafields: accessing description
I can access my metafield information like so:
{% assign mf = product.metafields.Specs %}
{% unless mf == empty %}
{% for mf in product.metafields.Specs %}
{{ mf.first }}: {{ mf.last }} ...
1
vote
2answers
175 views
Convert text to paragraph in Liquid Template
I'm trying to convert a raw string to html with the Liquid templating language. What I want to do is convert this:
Hello. This
is a text.
Please convert me.
into this:
<p>Hello. This<br ...
1
vote
1answer
626 views
how to get an iframe inside fancybox for shopify page
am trying an simple code to make the floatbox loaded on a shopify page using the following code(which i have tried outside shopify and its working) but how to get this on shopify is my prime question.
...
5
votes
2answers
782 views
Shopify Theme with Compass and Sass
Does anyone have a workflow for developing Shopify themes with Compass and Sass? I am really close, I just need to figure out how to not make Sass barf on the CSS liquid tags.
Here's what I've got:
...
0
votes
2answers
316 views
LESS CSS and escaping Liquid syntax for shopify theme development
I'm creating a Shopify theme and I'm using LESS to compile the stylesheet that Shopify needs as a style.css.liquid. It was all working fine util i started to add in lquid filters and if statements.
I ...
1
vote
1answer
344 views
Shopify liquid truncate
I'm working on a new Shopify template for my store. I'm trying to add up the number of chars in my title, and the number of chars in my description. Subtract this total from 200, and use the result in ...
0
votes
3answers
74 views
why do I get these spaces in the UI?
I am using shopify to run my store and I have designed this front page tamplet to show as many collection as I would have. For some reason when I have original four collections, there is no odd ...
0
votes
1answer
390 views
Refresh Anchor Tag on Each Click with Javascript
I have an ecommerce site that, every time someone clicks on "Add to Pallet" (we call it a pallet instead of a cart) the page refreshes to the same page and positions itself to the div of that product ...
1
vote
1answer
326 views
In Shopify, how do you show product variants as thumbnails like DODOCASE?
I have a product that has color variations. Instead of just a drop down to have color variants, is there a way to show thumbnails of the colors with radio buttons?
Just like how DODOcase does for ...
-1
votes
1answer
2k views
Shopify .liquid & .css edit locations [closed]
I'm pretty new to Shopify, and trying to get things working on the web in general, and am having some problems making some changes to the Minimo theme. I'm hoping to get some help with:
Due to what ...
0
votes
1answer
452 views
Change code to expand blog entry on Shopify Couture theme (Django?)
Hi does anyone know how to update the code below so that blog 'excerpts' are fully expanded with full text and image/video removing the need to click through?
Thanks,
David
div id="blog" ...
1
vote
1answer
512 views
Edit a .liquid file from shopify in eclipse with correct code styling
I am building a store using shopify.
I'd like to edit the template files offline in eclipse, but they are .liquid files, which eclipse doesn't recognize.
How do I make a custom content type for ...
0
votes
2answers
378 views
Shopify - host multiple themes at the same time
So, I'm selling some products on shopify. Let's say coffee.
I'm working with a new group that wants to sell my coffee, have a separate brand, have a branded website. Is there an easy way to do this ...
1
vote
1answer
571 views
Shopify: Product variant id's are outputting as literal strings, not numbers
thanks in advance for taking the time to read this.
I'm currently developing a "Test Shop" through my partners account. Everything in the shop is working as expected accept for my product.liquid ...
2
votes
1answer
220 views
Print_r equivalent in Liquid
In Liquid, how can I find out all the values that a collection contains? Is there a print_r function or similar?
The example below will return the item title, but I would like to know what other ...
1
vote
0answers
496 views
Trying to get the s3slider to work on my shopify
I’ve been working on this for 2 days now and it’s a little out of my league, I was hoping a cyber samaritan could help me out.
So Shopify has assets that you upload then call upon them in your HTML ...


