Adding in discount code at cart page
Discount codes can only be processed in the checkout. This customization allows users to enter their discount code on the cart page, the discount code is sent into the checkout as a url parameter...
Discount codes can only be processed in the checkout. This customization allows users to enter their discount code on the cart page, the discount code is sent into the checkout as a url parameter...
Tomorrow Shopify will begin introducing an important update to the sales channels and Home sidebar in the Shopify admin. Here’s a quick summary of the changes you and your clients can expect to see: Channels...
The metafields object allows you to store additional information for products, collections, orders, blogs, pages and your shop. You can output metafields on your storefront using Liquid. There are several Shopify apps and browser...
Promoting your products on Instagram is a great way to showcase more images of your products or to show them in action. You can also get involved with customers and build relationships that encourage...
We strongly recommend backing up the theme before making the changes so you could rollback the changes by clicking on Online Store > Themes > Download theme file. 1. Log into your admin panel...
Mobile visitors are goal oriented. When they click through to your site, they want to understand what’s being offered quickly and easily. And you can clearly communicate that to them through the use of...
Traditionally, most ecommerce websites use SSL encryption technology to protect a shopper’s personal information during the checkout process. While the checkout process is secure, all other traffic to the ecommerce website uses the old,...
For this week’s advanced Liquid Shopify tutorial, we’ll be looking at a way to access product information without having to loop over a collection or be on a product detail page. We can achieve...
Previously, we often embed image into article content or article excerpt, after that we will use a code snippet get a first image from that and made featured image for this article.
1 2 3 4 5 6 7 8 9 | {% assign featured_image = article.excerpt_or_content | escape %} {% if featured_image contains '<img' %} {% assign featured_image = featured_image | split: 'src="' %} {% assign featured_image = featured_image[1] | split: '"' %} {% assign featured_image = featured_image[0] | remove: '//cdn' %} {% assign featured_image = featured_image | remove: 'http:'; %} {% assign featured_image = featured_image | remove: 'https:' %} {{ featured_image | prepend:'//cdn' | img_tag}} {% endif %} |
But...
I need a solution for retrieving a number of randomly-chosen products on my homepage (or any pages). I read in here: Featuring a number of randomly-chosen products on your homepage. But I think It’s...