Month: March 2022
Install Shopify CLI
we can use your computer’s command line to install the CLI from one of the supported package managers. Requirements Ruby or Ruby+Devkit using RubyInstaller for Windows 2.7 or higher Git A Shopify Partner account A Shopify development store to install and test apps Install Shopify CLI Start by installing Shopify CLI on your computer. You can install Shopify CLI on Windows,… Continue reading Install Shopify CLI
Deployment of extension in shopify
create a version for your extension, publish it, and request access to run the extension on a live store. Register and push your extension In Shopify CLI, run the following command to register your extension: Run the following command to push your extension code to Shopify: Open the URL that shopify extension push printed to the console. Click Enable to preview… Continue reading Deployment of extension in shopify
_.find() in Underscore.js
This is the Undescore.js library function that allows us to iterate over your collection and finding the value in that collection based on the algorithm implemented. Following is the way we can use this function. output [2, 4]
What is Google Analytics and Benefits
The purpose of this program is to track user activity and translate that data into reports. Its operation is based on three processes: data collection, data processing, and report creation. First, set your goals and objectives. This will help you determine whether the tool is working effectively for you. Then, you can start analyzing your… Continue reading What is Google Analytics and Benefits
How to manage custom attribuets in magento2
To manage the custom attributes,Go to the magento stores->products section. There can add new attributes needed fro the product and will able to magento. The type of the attribute also able to manage from there Thank you.
Add featured product in magento2
Default Magento don’t have a featured product section so we will use the custom filed for the management of featured product. Using custom extension will create a featured field in the magento2 backend product section and using it value the feature list will be created. Thank you.
How to set up new products in magento2
Setup the new products There is an option on the Magento to set the new products. Then programmatically will fetch the new products collection on the frontend and list the new products data. Thank you.
Cloudways server configuration with Magento2
There are few steps to complete magento configuration on the cloudways. Create server, purchase server with RAM and Internal Space Add application:- Install the application that required. After the installation, the application credentials and URL will be available. Able to configure the domain and Ip if required. Able to set up the email configuration on… Continue reading Cloudways server configuration with Magento2
Get the tire price of a product in magento2
For each product could be possible to set the price level in magento2. It is called tire prices. If need to get a product tire price based on the customer. We could use this method Here we are fetching the tire price based on the customer. Thank you.