Latest news
September 1, 2020

Magento 2 Migration Checklist: 10 Steps For A Succesful Project

Moving your Magento 1 store to Magento 2 is almost mandatory nowadays. It is your ticket to a faster, more secure, and feature-rich e-commerce website. But before you make the leap, there’s some groundwork to cover. A well-prepared Magento 2 migration checklist can mean the difference between a seamless transition and a chaotic scramble. Let’s […]
May 7, 2020

Magento 1 End of Life: A Guide for Merchants

In 2020, Adobe announced that they would no longer update or support Magento 1 after June 30. This was big news for many online shops. If you run an online store using Magento 1, you might be wondering what to do next. We’re here to help make things clearer and easier for you. We’ll talk […]
October 26, 2019

15 Best Website Speed Test Tools You Can Use (Updated 2023)

Your website’s speed can literally make or break your online success. Whether you’re running an e-commerce empire, a personal blog, or a portfolio site, the need for speed is universal. Slow-loading pages can drive visitors away faster than you can say “bounce rate.” Welcome to our list of the best website speed test tools, where […]
August 31, 2019

20 Remarkable Design Tips for Magento Ecommerce Stores

Ecommerce is not just about selling products online, but about creating an immersive, engaging, and seamless shopping experience. Magento, known for its flexibility and scalability, stands at the forefront of this ecommerce revolution. In this blog post, we dive deep into the art and science of ecommerce design. We’ll explore a spectrum of innovative design […]
July 29, 2019

How to Get A Product by SKU Using GraphQL in Magento 2

Today, we’re focusing on an essential, yet sometimes overlooked aspect of Magento 2: getting a product by SKU using GraphQL. Understanding how to accurately and efficiently retrieve product details using SKU, or Stock Keeping Unit, is crucial for managing any e-commerce platform. Whether you are a seasoned developer looking to sharpen your skills or a […]
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 […]
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"/> […]