Google Cloud Architecture for Magento 2 January 9, 2021 Success of any ecommerce website is more or less dependent upon the performance of the ecommerce website and performance is depends […]
Install and Configure PHP 8 (magento) December 22, 2020 Add a Linux repository which includes all PHP versions:$ sudo apt install software-properties-common$ sudo add-apt-repository ppa:ondrej/php Install PHP in Apache$ sudo […]
Happy Diwali November 13, 2020 Happy Diwali to All of you Subscribe my YouTube channel for Magento videos. https://www.youtube.com/c/SAFALJHA/about
Magento Open Source VS Magento Commerce full features list November 1, 2020 Open source vs Commerce Features Open Source Magento Commerce Integrated Checkout, Payment, and Shipping ✔ ✔ Mobile Optimized Shopping ✔ ✔ […]
Magento 2 : How to run custom script on magento root? October 7, 2020 Create a file on magento root and use object manager for using dependencies, In below example you can see how we […]
Magento 2 : How to add custom Menu with sub-menu in admin? October 2, 2020
Magento 2 : Requirejs, Calling a js file universally in magento 2 September 29, 2020 Calling a js in all the pages of Magento 2, use below code in your requirejs-config.js:
Magento 2 : How to Delete test data of Orders, Customer, Products and categories using MySql query? September 25, 2020 Delete all the order and quotes Delete all products data Delete all categories Delete all customers Delete All reviews
How to Install Magento 2 using command line? September 22, 2020 Install Magento 2 using command line using below command:
Magento 2 to Adobe Magento – Certificate Name change list September 13, 2020 Old: Front End DeveloperNew: Adobe Certified Expert – Magento Commerce Front-End Developer Old: Associate DeveloperNew: Adobe Certified Professional – Magento Commerce […]
Magento 2 – How to use jQuery in magento 2? September 11, 2020
Magento 2 – How to add custom logs in Magento 2 for debugging? September 11, 2020 Use below code anywhere is Magento (Only for debugging) NOTE: The above code is only for debugging purpose only, you should […]
Magento 2 – How Setup Magento 2 PWA? September 5, 2020 Setup PWA (Linux os) Step 1 : Install magento 2.3.1 Step 2 : Install/upgrade node Use n module from npm in […]
Magento 2 – How to get Current Cart Items? August 22, 2020 Use the session to get the current cart quote items NOTE : Magento\Checkout\Model\Cart is deprecated.
Magento 2 – How to Check If Customer Login Or Not? August 22, 2020 use isLoggedIn() method to get value
Magento 2 – Speed Optmization tips, increase your magento website speed August 22, 2020 21 Tips to improve Magento 2 Application performance Production Mode– Run below command in terminal to get current application mode:$ bin/magento […]
Magento 2 : How to disable MSI in magento 2? (Ver. 2.3.4) August 22, 2020 Add below code on composer : Then run composer update
Magento 2 – Get Controller name, Module name, Action name and Router name August 22, 2020
Magento 2 – Call Static Block Using XML August 22, 2020 For calling static block using xml use below code in your XML layout files:
Magento 2 – Enable other options in TinyMCE August 22, 2020 Create plugin of Wysiwyg configuration file in your module etc/di.xml Now create plugin class in your module: Company/Module_Name/Plugin/Config.php