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 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 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 19, 2017 Magento Product Attributes: Everything Store Owners Must Know We will show you 5 simple steps to create a new attribute in Magento 2. Creating new product attributes in Magento 2 are pivotal for all Magento stores.
Read more Magento 2 Tutorials July 18, 2017 How to Create & Manage Magento 2 Categories We will show you some simple steps to create a new category in magento 2 as well as how to manage categories in Magento 2 (move, delete, ...)
Read more Magento 2 Tutorials July 17, 2017 How to Create a Downloadable Product in Magento 2 Downloadable product is one of the most popular types of Magento 2. This tutorial will show 5 steps to create a downloadable product in Magento 2 in just few minutes.