Read more Magento 2 Tutorials July 19, 2019 How To Get Categories Through Magento 2 REST API? In this blog post, we will show you how to get the categories from a Magento website by using the Magento REST API. Therefore, you can use a tool to access the API. Here we are using Postman. And to get the category list, first, we need to get the access token of the admin […]
Read more Magento 2 Tutorials July 9, 2019 How to Get All Products through Magento 2 API To satisfy the increasing demands of e-commerce businesses, Magento 2 now provides Application Programming Interface (API) that lets developers work with the platform’s data. This guide will show you how to get the product list from a Magento 2 website by using the REST API and GraphQL. Let’s get started and unlock the potential of the […]
Read more Magento 2 Tutorials July 1, 2019 How To Create API Request In Magento 2? To create an API request in Magento 2, there are two actions that we have to take: creating API requests and forcing request parameters. A. Create API Request There are four simple steps to create: Step 1: Declare API Create webapi.xml under the etc root module folder:/magento/module-customer/etc/webapi.xml <route url="/V1/customers" method="POST"> <service class="Magento\Customer\Api\AccountManagementInterface" method="createAccount"/> <resources> <resource ref="anonymous"/> […]
Read more Magento 2 Tutorials June 13, 2019 How To Use Stripe Connect With Custom Account (Vendor Account) In Magento 2? Stripe is one of the most popular payment gateways for Magento 2 e-commerce stores. In this Magento tutorial, we will show you how to integrate Stripe to Magento 2 websites and use a custom account. With the custom account (vendor account), you can modify the connected account’s details and settings through the API, including managing […]
Read more Magento 2 Tutorials May 28, 2019 How To Configure REDIS In Magento 2 & Magento 1? (5 Minutes) To begin with, there are several prerequisites for Redis cache configuration in Magento 1 & 2 which are: Notes: The latest versions are more recommended. Step 1: Update and Install Redis-server wget http://download.redis.io/releases/redis-stable.tar.gz tar xzf redis-stable.tar.gz cd redis-stable make make test sudo make install cd utils sudo ./install_server.sh sudo service redis_6379 start sudo update-rc.d redis_6379 defaults Step […]
Read more Magento 2 Tutorials April 16, 2019 How to Set Up Magento 2 Multi-Language Stores Setting up a multi-language store in Magento 2 might seem tricky, but it’s a great way to reach a wider audience and boost your sales. In this guide, we’ll walk you through the steps to create a store that speaks your customers’ languages. Whether you’re expanding into new markets or just want to offer a […]
Read more Magento 2 Tutorials April 16, 2019 How To Use Custom Local Storage & Cookie Storage In Magento 2? In this tutorial, we will show you 7 easy steps to use Magento 2 Local Storage and 4 simple steps to utilize Magento 2 Cookie Storage. Let’s figure it out now! A. Custom Magento 2 Local Storage Step 1: Create a module.xml file: app/code/Tigren/CustomStorage/etc/module.xml <?xml version="1.0" ?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"> <module name="Tigren_CustomStorage" setup_version="1.0.0"/> </config> Step 2: Create Registration […]
Read more Magento 2 Tutorials April 10, 2019 How To Index Product Attributes With Source Model In Flat Table In Magento 2? First of all, the product attributes might not be added to the flat table in Magento 2 since it lacks some methods: Magento\Eav\Model\Entity\Attribute\Source\Table. In this tutorial, we will help you to add missing products attributes with the source model to the flat table. Let’s get started! Step 1: Enable the flat catalog (Accessing your admin panel > […]
Read more Magento 2 Tutorials January 22, 2019 How to Customize Magento 2 Checkout Shipping Address Form The Magento 2 Checkout Shipping Address Form is an essential part of the checkout process, allowing customers to enter their shipping information. It can be customized to improve the user experience, such as by moving the billing address below the shipping address, making the checkout flow simpler and more efficient for customers. In this guide, […]
Read more Magento 2 Tutorials January 15, 2019 Magento 2 Elasticsearch: How To Install And Configure Configuring and installing Elasticsearch in Magento 2 is a critical step for optimizing catalog searches and enhancing the overall performance of your e-commerce store. Elasticsearch, a powerful search engine, offers rapid search results, scalability, and full-text search capabilities, making it an indispensable component for Magento 2. In this guide, we will walk you through the […]
Read more Magento 2 Tutorials December 3, 2018 Magento SUPEE-10975 Comprehensive Installation Guide On November 28, 2018, Magento released the SUPEE-10975, which brought about a lot of functional fixes as well as security improvements. The major purpose of this patch is to handle cross-site scripting (XSS), remote code execution (RCE), cross-site request forgery (CSRF), and other threats. How To Install Magento SUPEE-10975? As you might know, there are two popular ways to […]