Latest news
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 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 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 […]
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 […]