In today’s rapidly evolving eCommerce landscape, businesses need platforms that offer flexibility, scalability, and powerful customization… Continue reading on Medium »
The Model Context Protocol (MCP) is an open standard introduced by Anthropic that allows AI assistants (Claude, ChatGPT, and others) to… Continue reading on Medium »
Essential features businesses should include when building a scalable Magento ecommerce store Continue reading on Medium »
In 2026, user expectations for lightning-fast eCommerce experiences continue to rise. Continue reading on Medium »
For some reason our customer login form on the frontend does not work anymore. We still can login into the backend without any problems. I check the log files, but there are not error’s displayed. Also there is no frontend error displayed. Anyone a idea how to solve this problem? […]
I have tried to change the code in _mincart_lesss but cart is not changed in website.Any one can help me on this?
I want to populate attribute(Gender) values in select dropdown on listing page. On selecting specific value of the gender attribute, the product list should be filtered. The gender attribute has 3 values Male Female Others For some products the attribute value is set to male and female as the product […]
I have override widget_recently_viewed.xml in my theme in Magento_Catalog with <?xml version="1.0" encoding="UTF-8"?> <listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd"> <columns name="widget_columns"> <column name="brand" component="MyVendor_MyModule/js/product/brand" sortOrder="2" displayArea="details-area"> <settings> <label translate="true">Brand</label> <bodyTmpl>MyVendor_MyModule/product/brand</bodyTmpl> </settings> </column> </columns> </listing> proj/app/MyVendor_MyModule/product/brand.html proj/app/code/MyVendor/Product/view/base/web/js/product/brand.js <!-- get it from Magento_Catalog/js/product/name --> define([ 'Magento_Ui/js/grid/columns/column', 'Magento_Catalog/js/product/list/column-status-validator' ], function (Column, columnStatusValidator) { 'use strict'; return […]