We sacrifice by not doing any other technology, so that you get the best of Magento.

We sacrifice by not doing any other technology, so that you get the best of Magento.

    • Magento 2: create new category layout for specific category

      If you want to set a different look for a specific category, then you can make new layout for that category like below. First you need to create new file under your theme Magento_Cataloglayoutcatalog_category_view_id_{{id of category}}.xml then you can move and add…

      READ MORE
    • How our consultation helped to achieve extra 92% sales growth for a client?

      A client made an inquiry at our site which read, We want to increase our sales. Can you help to improve the performance of our site? Our tech expert discussed the case with the client. Then, we ran an audit on the…

      READ MORE
    • How to solve “The Order wasn’t placed. First, agree to the terms and…” error?

      If you are facing error as per the below, Then the first step is to override the purchase order mixin js file on your theme and add the below code. /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt…

      READ MORE
    • Add your layout updates for particular store using xml

      I've to add custom CSS for particular store on checkout page, so I've updated a layout using observer. Please follow the below method. you need to copy the below event in your module. <?xml version="1.0" encoding="UTF-8" ?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd"> <event name="layout_load_before">…

      READ MORE
    • Magento 2 : Special character in category name issue during CSV import of products

      I have recently faced an issue during CSV import as below.: In 'Categories ' column. Category name is like 'Default Category/Motorola/E Series/Moto E6 (XT2005,XT2005-3,XT2005-5)' While I am importing this category, it's creating three categories despite one. Due to comma(,), Magento's default functionality…

      READ MORE
    • How to create magento 2 patch?

      If you want any of your customization changes, then you can do it in core file let's say Block.php which will be at vendor/magento/module-cms/Block/Block.php. 1. Create a copy of that file with your changes on it. 2. Rename that file BlockModified.php. 3.…

      READ MORE
    • Magento 2 : How to add customer child menu and reindex only customer grid programmatically?

      If you want customer grid reindex programmatically, you can use the below step. 1. Create file menu.xml on app/code/Magemonkeys/CustomerReindex/etc/adminhtml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Backend:etc/menu.xsd"> <menu> <add id="Magemonkeys_CustomerReindex::customer_reindex" title="Eagle Rocket" translate="title" module="Magemonkeys_CustomerReindex" sortOrder="50" resource="Magemonkeys_CustomerReindex::manage_customer_reindex" parent="Magento_Customer::customer"/> <add id="Magemonkeys_CustomerReindex::customer_manage" title="Customer Reindex" translate="title" module="Magemonkeys_CustomerReindex" sortOrder="10" parent="Magemonkeys_CustomerReindex::customer_reindex"…

      READ MORE
    • Magento 2 : How to override Product Pricing file?

      If you need to set our custom price or to perform any customization in price, them follow below steps. Create di.xml under etc folder in module <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <virtualType name="MagentoConfigurableProductPricingPricePool" type="MagentoFrameworkPricingPricePool"> <arguments> <argument name="prices" xsi:type="array"> <item name="regular_price" xsi:type="string">MagemonkeysPricesortingPricingConfigurableRegularPrice</item> <item…

      READ MORE
    • How to set phtml file through html via Ajax call in Magento 2?

      Sometime we need to set html data without load or set it via ajax. Then create a module name : Magemonkey:Ajaxcall create index.phtml in Magemonkey/Ajaxcall/view/frontend/templates/ <div id="ajaxresponsedata"></div> <?php $ajaxurl = $block->getAjaxUrl(); ?> <script type="text/x-magento-init"> { "*": { "Magemonkey_Ajaxcall/js/call": { "AjaxUrl": "<?php echo…

      READ MORE
    • Magento 2 : How to add watermark to the specific product image programmatically?

      If you want to add watermark to the specific product image programmatically, then use below script. <?php /* * @ custom script to add watermark image on the product image that has -f in the product image name */ use MagentoFrameworkAppBootstrap; require…

      READ MORE
    Recent Articles
    Get a Free Quote