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.

    • Create Admin Theme in Magento 2

      Here we will explain how to create admin theme and how to apply the admin theme in Magento 2. First we need to switch the Magento 2 application to the developer mode. php bin/magento deploy:mode:set developer Create Admin Theme Now, we will…

      READ MORE
    • How to get public key for phpseclib version 3 using public key loader?

      Please check the difference between Phpseclib versions 2 and 3 for getting the public key. For Phpseclib version 2: <?php use phpseclibCryptRSA; use FirebaseJWTJWT; use phpseclibMathBigInteger; $rsa = new RSA(); $rsa->loadKey([ 'e' => new BigInteger(JWT::urlsafeB64Decode($e), 256), 'n' => new BigInteger(JWT::urlsafeB64Decode($n), 256) ]);…

      READ MORE
    • How to remove leading zero’s from the order, invoice and shipment number in Magento 2?

      If you want to remove all leading zero's from order, invoice and shipment number in Magento 2 then follow below steps Step 1: Create Registration Create registration.php file in the app/code/Magemonkeys/Ordersequence folder with the following code. <?php MagentoFrameworkComponentComponentRegistrar::register( MagentoFrameworkComponentComponentRegistrar::MODULE, 'Magemonkeys_Ordersequence', __DIR__ );…

      READ MORE
    • Magento 2 : Override the Category view block file

      Override view block using di.xml and add the below code into that file <preference for="MagentoCatalogBlockCategoryView" type="VendorModuleBlockCategoryView"/> Create the View.php file under your custom module with this path Vendor/Module/Block/Category/View.php and add the below code. <?php namespace VendorModuleBlockCategory; use MagentoCatalogApiProductRepositoryInterface; use MagentoCatalogModelCategory; class View…

      READ MORE
    • Magento 2 : Setup PWA from Scratch

      Follow the below steps to install and set up PWA in 2.3 : Prerequisite : You must have a version of  NodeJS >=10.14.1 , and Yarn > = 1.13.0. I suggest using the Latest versions of both are recommended. 1 ) Use the…

      READ MORE
    • Add an image programmatically from any url in Magento 2

      <?php /** * file location: * app/code/VendorName/ExtensionName/Service/ImportImageService.php */ namespace VendorNameExtensionNameService; use MagentoCatalogModelProduct; use MagentoFrameworkAppFilesystemDirectoryList; use MagentoFrameworkFilesystemIoFile; /** * Class ImportImageService * assign images to products by image URL */ class ImportImageService { /** * Directory List * * @var DirectoryList */ protected…

      READ MORE
    • How to check list of Layout XML called for a specific page in Magento 2?

      You can check a list of called layout XML for specific pages by MagentoFrameworkAppView class. Call getLayout() method from MagentoFrameworkAppView.php class. getLayout()->getUpdate()->getHandles() is used for getting all the handles of a page. You need to add the following code at the end…

      READ MORE
    • Magento 2 : How to override quote merge file?

      Use this tutorial to override quote merge file. Using this tutorial, you can customize quote merge while adding any custom code at the time of customer and guest quote merge Module Name : Magemonkeys:Quotemerge Create di.xml in /etc folder <?xml version="1.0"?> <config…

      READ MORE
    • How to Show Additional Price, Main Price and Special Price with On Sale Price for Category and Product Detail Page?

      1) Create a Additional Price attribute from admin area and assign into attribute sets as per your requirement. Store->Configuration->Attributes: Product->Add New Attribute(Additional Price) Assign into: Store->Configuration->Attributes: Attribute Sets(Assign Under Groups->Product Details:additional_price) 2) Then you have to override final price value with following…

      READ MORE
    • Secret tips to improve eCommerce sales

      Let's discuss some secret practices that should be adopted to increase your eCommerce sales. Customized Sections : Amazon use this trick. Homepage or most viewed pages in your store shouldn't have general/regular products . Dynamically, user favorable products should be displayed. Like…

      READ MORE
    Recent Articles
    Get a Free Quote