Latest news
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" […]
August 15, 2017

How to Use Flat Catalog in Magento 2? (10 Minutes)

Magento 2’s Flat Catalog is a feature that dynamically creates tables, neatly organizing product attributes into rows of data. These tables are updated automatically, and with optimized indexing, they not only speed up catalog processing but also make cart price rule execution lightning-fast. In this guide, we’ll teach you how to use Magento 2’s Flat […]
August 10, 2017

How To Config RSS Feeds In Magento 2

Are you looking to keep your Magento 2 e-commerce store visitors updated with the latest product releases, promotions, or content updates? RSS feeds can be your secret weapon. Configuring RSS feeds in Magento 2 is a simple yet powerful way to ensure your customers are always in the loop. In this step-by-step guide, we will […]
August 2, 2017

How to Configure and Manage Newsletters in Magento 2

Using newsletters is one of the most effective ways to connect e-commerce stores to their customers. It will help to promote your store, deliver news and updates or draw buyers’ attention to your sales campaigns. In Magento 2, you will be able to create multiple newsletter templates and send to your send them to your […]