How to get a Youtube API Key
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...
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...
Being a Shopify tech partner, we get to work with some of the best Shopify apps and integrations as well as the stores, who utilize their features to get hundreds of orders weekly. A...
When you have an online Shopify store you might want to know how many users are currently online or connected to your store. Now let’s create online counter. The first step, you must go...