Skip to content

magento man

Is it possible to add a cms_page to show all products with layered navgiation

I created a cms page with url key “allproducts”, i add a layout.xml cms_page_view_id_allproducts.xml in my theme appdesignfrontendVendorNameMagento_Cmslayout here is the content of the layout xml, <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:View/Layout/etc/page_configuration.xsd”> <body> <referenceContainer name=”content”> <block class=”MagentoCatalogBlockProductProductListToolbar” name=”category.toolbar” template=”Magento_Catalog::product/list/toolbar.phtml”/> <block class=”MagentoLayeredNavigationBlockNavigation”… Read More »Is it possible to add a cms_page to show all products with layered navgiation

Create a custom component to create display design options in admin and design option dropdown and selected will be displayed on product page

Create a custom component to add/edit/delete and view the detail of design information into admin. Associate the multiple design option to product and show selected design option product detail page. Create following fields in given table: Table name: design design_id… Read More »Create a custom component to create display design options in admin and design option dropdown and selected will be displayed on product page

How to create catalog price rule while initializing module?

I’m trying to create catalog rule by installing the module, but it’s not working. This is my CreateRuleSetupInstallData.php file <?php namespace PerspectiveCreateRuleSetup; use Exception; use MagentoFrameworkSetupModuleDataSetupInterface; use MagentoFrameworkSetupInstallDataInterface; use MagentoFrameworkSetupModuleContextInterface; class InstallData implements InstallDataInterface { /** * @var MagentoFrameworkSetupModuleDataSetupInterface */… Read More »How to create catalog price rule while initializing module?