Read more Magento 2 Tutorials 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('*/*/*', […]
Read more Magento 2 Tutorials 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 […]
Read more Magento 2 Tutorials 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 – […]
Read more Magento 2 Tutorials 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" […]
Read more Magento 2 Tutorials August 18, 2017 Magento 2 Front Controller Reached 100 Router Match Iterations This tutorial will show you how to fix the Front Controller Reached 100 router Match Iterations error in Magento in just 5 minutes.
Read more Magento 2 Tutorials 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 […]
Read more Magento 2 Tutorials 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 […]
Read more Magento 2 Tutorials 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 […]
Read more Magento 2 Tutorials July 31, 2017 How to Create and Manage Coupon Codes in Magento 2 We will show you simple steps to create and manage coupon code in Magento 2. Creating coupon codes in promotion campaigns is important feature of Magento 2 that all store owners will need to know.
Read more Magento 2 Tutorials July 24, 2017 How to Create New Cart Price Rules in Magento 2 Whether you’re a store owner looking to boost sales, a marketer aiming for more effective promotions, or a developer setting up an ecommerce site, understanding cart price rules is essential. These rules are powerful tools that allow you to offer discounts based on a variety of conditions, helping you increase customer satisfaction and drive more […]
Read more Magento 2 Tutorials July 24, 2017 How To Create Catalog Price Rules In Magento 2 In the fast-paced world of e-commerce, pricing is everything. Magento 2, the powerhouse of online retail, offers you a secret weapon: Catalog Price Rules. Today, we’ll show you the ropes for creating Catalog Price Rules in Magento 2. Get ready to learn how to set up discounts, target specific products or customer groups, and schedule […]