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.

    • How to display product discount percent on product details page in Magento2?

      First we need to create ‘catalog_product_prices.xml’ at below location using the given code. appcodeMagemonkeysDiscountpercentageviewbaselayoutcatalog_product_prices.xml <?xml version="1.0" encoding="UTF-8"?> <layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/layout_generic.xsd"> <referenceBlock name="render.product.prices"> <arguments> <argument name="default" xsi:type="array"> <item name="prices" xsi:type="array"> <item name="final_price" xsi:type="array"> <item name="render_class" xsi:type="string">MagentoCatalogPricingRenderFinalPriceBox</item> <item name="render_template" xsi:type="string">Magemonkeys_Discountpercentage::product/price/final_price.phtml</item> </item> </item> </argument> </arguments> </referenceBlock>…

      READ MORE
    • How to remove unnecessary customer account links in Magento2?

      Create a custom extension or theme and then override customer layout file app/design/frontend/Magemonkeys/Theme/Magento_Customer/layout/customer_account.xml use remove to remove any extra link from my account <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body>    <!-- Remove unwanted account navigation links -->    <!-- Put this file in: app/design/frontend/Magemonkeys/Theme/Magento_Customer/layout/customer_account.xml -->    <!--…

      READ MORE
    • Magento 2 : Remove State/Province dropdown from estimate shipping on cart page

      You can create checkout_cart_index.xml in your Magento_Checkout custom theme. Visit below path - app/design/frontend/Vendor/theme/Magento_Checkout/layout/checkout_cart_index.xml And add the below code: <?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="checkout.cart.shipping"> <arguments> <argument name="jsLayout" xsi:type="array"> <item name="components" xsi:type="array"> <item name="block-summary" xsi:type="array"> <item name="children" xsi:type="array"> <item name="block-shipping"…

      READ MORE
    • Magento 2 Create the product attribute programmatically

      If you want to create a product attribute programmatically, but not by admin then this blog post is right the solution for you. Create file app/code/Magemonkey/CustomAttribute/Setup/InstallData.php <?php namespace MagemonkeyCustomAttributeSetup; use MagentoEavSetupEavSetup; use MagentoEavSetupEavSetupFactory; use MagentoFrameworkSetupInstallDataInterface; use MagentoFrameworkSetupModuleContextInterface; use MagentoFrameworkSetupModuleDataSetupInterface; class InstallData implements…

      READ MORE
    • Magento 2 bundle product image not showing if child product added in cart programmatically

      If you want to show the bundle product image when the child product added in the cart programmatically, please follow the below step. Step 1). Create file app/code/Magemonkeys/Cart/etc/di.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <type name="MagentoCheckoutCustomerDataAbstractItem"> <plugin name="Change_Product_Image_In_Minicart" type="MagemonkeysCartPluginMinicartImage" sortOrder="1"/> </type> </config> Step…

      READ MORE
    • How to overriding cart default.phtml in custom module via plugin base in Magento 2?

      Please find below steps to override default.phtml by using plugin 1. Create an di.xml in : /app/code/Vendor/ModuleName/etc <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <!-- override cart/item/default.phtml file --> <type name="MagentoCheckoutBlockCartAbstractCart"> <plugin name="change_template_for_default" type="VendorModuleNamePluginCartAbstractCart" sortOrder="1"/> </type> </config> 2. Create an AbstractCart.php in : app/code/Vendor/ModuleName/Plugin/Cart…

      READ MORE
    • How to check customer is authenticated(login) or not in Magento 2?

      Customer Authentication in Magento 2 is required when we have to check the customer is a guest user or a login user. There are many occasions when we have to check the customer is login or not, and based on the login…

      READ MORE
    • Is Dropshipping still profitable in 2023, or Dropshipping is dead in 2023?

      Mage Monkeys have helped numerous merchants to implement drop shipping ecommerce solutions for their business. From the development trend, we can say that dropshipping trend continues even in 2023. It's not dead yet. This method of business has long to go. Dropshipping…

      READ MORE
    • 5 secret tips to increase sales conversion of your Magento shop

      Magento is an exclusive shopping cart that provides all the highlights, features, and facilities that a company or entrepreneur wants to sustain the success path of their businesses. It's quick, secure and perfect with a different scope of applications, platforms, and devices.…

      READ MORE
    • Know Progressive Web App – A Modern Era of App for eCommerce Stores

      Have you ever wished? Websites run like native mobile apps. Well, the answer is yes. PWA can make that happen. A fully functional and responsive website can expose to a lot of limitations when being accessed on mobile devices like slow page…

      READ MORE
    Recent Articles
    Get a Free Quote