Latest news
September 21, 2017

How To Get SKUs From Orders In Magento

This Magento tutorial will show you how to get all SKUs from orders of the user who is currently logged in in Magento. For Example: A user has placed 3 orders. How can we get the returned list of SKUs including 0001, 0002, 0003, 0004, and 0005? The aim of this is to create a […]
September 15, 2017

How To Create A Credit Memo In Magento 2 In 10 minutes

In many cases, the customers ask for a refund because they are not satisfied with your products. Therefore, Magento 2 offers us the Credit Memo function in order to help the Magento store owners give the refund easily to their purchasers. In this Magento tutorial, we will show you how to create, print, and check […]
September 12, 2017

Magento 2 Customer Groups: Your Complete How-To Guide

Magento 2 is a powerful e-commerce platform that provides many features to assist businesses in properly managing their online storefronts. Whether you’re looking to implement dynamic pricing, targeted promotions, personalized shopping experiences, or access control, Magento 2 customer groups are your key to e-commerce success. In this fast guide, we’ll look at why you might […]
September 11, 2017

How to Configure Customer Accounts in Magento 2

Welcome to our latest guide on Magento 2, a powerhouse of ecommerce functionality. Today, we’re diving into the world of customer accounts — a crucial aspect of any online store. Managing customer accounts effectively can significantly enhance the shopping experience, leading to greater customer satisfaction and loyalty. In this post, we’ll walk you through the […]
September 8, 2017

How To Create A Custom Widget in Magento 2 (5 minutes)

What Are Widgets In Magento 2? In simple words, the widget is a content block that consists of images, text, and interactive elements. You can easily display the widget on any page (home, simple product page, grouped product page, category page,…)  and any position (e.g.: page header, page footer, page bottom, …) on your site. In general, […]
August 29, 2017

[Fix It Series] Total Price In Wishlist Page Is $0.00 In Magento 2

PROBLEM The total price for all products is wrong in the Wishlist Page in Magento 2. Although each product has its own price, the total price equals $0.00. SOLUTIONS Let’s follow the following steps: Code: Create di.xml in etc <?xml version="1.0"?> <!-- /**  * @copyright Copyright (c) 2017 www.tigren.com  */ --> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference […]
August 25, 2017

How to Format SEO URL with Slashes in Magento

TASK: Adding slashes into SEO URL in Magento From: https://www.example.com/products?p=1&attributes=value To: https://www.example.com/products/p/1/attributes/value SOLUTIONS You can override the getUrl() method in the class Mage_Catalog_Model_Layer_Filter_Item, path /app/code/core/Mage/Catalog/Model/Layer/Filter/Item.php Then, locate the function at line 57, it will look like this: public function getUrl() { $query = array( $this->getFilter()->getRequestVar()=>$this->getValue(), Mage::getBlockSingleton('page/html_pager')->getPageVarName() => null // exclude current page from urls); return Mage::getUrl('*/*/*', […]
August 22, 2017

How To Set Up Automatic Product Redirects in Magento 2?

What Are Automatic Product Redirects In Magento 2? In Magento 2, when you change any URL key of a product, it will create automatic redirects. Then, when your customers access the old URL, they will be redirected automatically to the new/ edited address. However, you must conduct several configurations in the back-end menu to make it […]
August 21, 2017

6 Easy Steps To Generate URL Rewrite in Magento 2

In Magento 2, the URL Rewrite tool empowers online merchants to create custom URLs, making them more user-friendly and search engine optimized. This feature plays a significant role in enhancing website navigation, improving SEO rankings, and providing a seamless experience for customers. In this post, we will explore the two primary types of rewrites – […]
August 18, 2017

[Fix It Series] Magento Error: Custom Option Type Fields Are Not Displayed

PROBLEM Working on a module to add a product custom option input type (Derivated from file type). In the back-end, under catalog/product/custom options, the new option is present in the “input type” list but when selecting it, the associated custom option type fields are not displayed (e.g.: price, price type, sky, compatible file extension, etc.). app/code/A/Custoptiontype/etc/module.xml <?xml version="1.0" […]