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...
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
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...
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.
This step-by-step tutorial walks you through how to embed a Google Map on your Shopify store. This is a great idea for businesses with a retail or office location so they can have a...
Shopify offers a secure platform to make sure your store stays safe online. That does not mean you don’t need to store backups just in case something goes wrong, for example: Hacker gains access...
How fast your site loads is not only important for first time visitors, but it is also important for moving search engine ranking. When you minify your website’s CSS, HTML, and Javascript files, you...
Connecting your Shopify store to ShopMaster is very simple. Just go to the Settings tab and click on the Manage Channels, or just click on the New Channel. Go to Settings > Manage Channels...