Login to the Shopify account.Create a store in shopify. Created a new app , by going in to settings >Apps and sales channels>Develop Apps. Save the API key and Password in a file, Get the Admin access token and save it in a secured file. Go to the postman app or website and the create… Continue reading Create Customer in Shopify using Postman.
Category: Shopify
Restrict new customers from viewing product page.
Age Verification Pop-Up: You can add an age verification pop-up to your Shopify store. This is commonly used for stores selling age-restricted products like alcohol or tobacco. When a new customer visits your store, they will be prompted to enter their date of birth. If they are underage or if it’s their first visit, you… Continue reading Restrict new customers from viewing product page.
Add New Template In Shopify.
Adding a new template in Shopify allows you to create custom page layouts or modify existing ones. Here are the steps to add a new template in Shopify: 1. Log in to Your Shopify Admin: Access your Shopify admin dashboard by logging in with your credentials. 2. Navigate to the Theme Editor: From your Shopify… Continue reading Add New Template In Shopify.
Add New Template In Shopify
Adding a new template in Shopify allows you to create custom page layouts or modify existing ones. Here are the steps to add a new template in Shopify: 1. Log in to Your Shopify Admin: Access your Shopify admin dashboard by logging in with your credentials. 2. Navigate to the Theme Editor: From your Shopify… Continue reading Add New Template In Shopify
Creating collection and adding p
Creating collections and adding products to them is an essential part of organizing your online store on platforms like Shopify. Collections help customers navigate your store and find products more easily. Here’s how you can create a collection and add products to it on Shopify: Log in to Your Shopify Admin: Log in to your… Continue reading Creating collection and adding p
SHOPIFY LIQUID LANGUAGE
Liquid basics Liquid is used to dynamically output objects and their properties. You can further modify that output by creating logic with tags, or directly altering it with a filter. Objects and object properties are output using one of six basic data types. Liquid also includes basic logical and comparison operators for use with tags. … Continue reading SHOPIFY LIQUID LANGUAGE
How to remove the blue highlight of button on mobile?
When trying to create buttons, links or input fields using latest development technologies like next js, react and angular etc there might be some times a default background color may appear. This can cause bugs for the developed website since they create a different background color different from the mockup. As solution we can use… Continue reading How to remove the blue highlight of button on mobile?
How to install shopify locally and publish in online store ?
Note : This installation is successfully done in Linux Mint 19.3 Cinnamon Requirements for Installation and setup Node.js 16 or higher Ruby 3.0 Ruby development environment (ruby-dev / ruby-devel) Git cURL GCC g++ Install all depndecies locally.Tried using node v16.20.2.Tried using npm 8.19.4.To install shopify – npm install -g @shopify/cli @shopify/themeTo download theme to work… Continue reading How to install shopify locally and publish in online store ?
Steps to follow in GCP on WordPress PHP updates.
Log into google cloud console and go to your project. Go to compute engine section and locate the virtual machine. Instance associated with WordPress website. Click on the SSH button next to the VM instance to open a secure shell connection to the server Then use the required commands to install the latest version of… Continue reading Steps to follow in GCP on WordPress PHP updates.
How to disable and enable the scroll in website(Java Script)
In this section we can see how we can disable and enable scrolling option in an ecommerce website using javascript function. First of all we have to set up a block of code in the respective page. // PREVENT DEFAULT HANDLERfunction preventDefault(e) { e = e || window.event; if (e.preventDefault) { e.preventDefault(); } e.returnValue =… Continue reading How to disable and enable the scroll in website(Java Script)