How to get Flickr API key?
Some Shopify apps need Flickr API key to work. This step-by-step tutorial walks you through how to create and get a Flickr API key. Step 1: First you must login to your Flickr account....
Some Shopify apps need Flickr API key to work. This step-by-step tutorial walks you through how to create and get a Flickr API key. Step 1: First you must login to your Flickr account....
You want to detect mobile or desktop device accessing your Shopify store to do a task: If customer is accessing the site from a mobile device execute script A, else execute script B. The...
Your store is sales representative of your business. If the representative is weak and cannot be trusted you wont get good sales. Most of newbies need to understand the important of managing the website....
Some Shopify apps need Youtube API key to work. This step-by-step tutorial walks you through how to create and get a Youtube API key. Go to https://developers.google.com/ and log in or create an account, if...
What’s the best way to prevent the body tag scrolling. The easiest way is a simple CSS snippet:
1 2 3 4 | .disable-scrolling{ overflow-y:hidden; overflow-x:hidden; } |
And you must add this class (disable-scrolling) into body tag. Demo
Here are 6 ways you can drive free traffic to your store so you can generate customers, We recommend using 3-5 of these methods SEO should be one of them regardless. 1. SEO (Search...
If you have tech skill, you can handle this by using javascript, but we have another good way is to use the apps, you can try these apps below: 1. Minimum Orders: Prevent Small...
There are plenty of options available to you with the Shopify eCommerce platform. When it comes to experts – you need to figure out what it is that you need. Do you need a...
The below tips is best site structure to make your Shopify store eye-pleasing, user-friendly and rise in trust for customer. 1. Store name Try to keep it short, sweet and pronounceable! If visitors can’t...
The below liquid code help you extract all images from an article.
1 2 3 4 5 6 7 8 9 10 11 12 | {% assign article_content = article.content | escape %} {% if article_content contains '<img' %} {% assign article_content = article_content | split: '<img src="' %} {% for all_img in article_content %} {% if forloop.index != 1 %} {% assign a_img = all_img | escape %} {% assign a_img = a_img | split: '&' %} <img src="{{ a_img[0] }}"> {% endif %} {% endfor %} {% else %} {% endif %} |
You can use it to create a slideshow gallery.