Magento2 Blog

Find solution of magento2 errors

BEST HOSTING For MAGENTO2 Introducing Magento 2 is never a simple errand. Since the absolute first delivery, there are numerous issues clients may experience when introducing Magento 2. With the most recent arrival of Magento 2.4.3, things have gotten more …
Read More
Are you facing issue of product image not displaying in the Slider or Caraousel in Magento2? One of the possible reason could be that product image path shows %5C instead of /. To fix this, I have following solutions:- Overrite …
Read More
Are you facing issue of not displaying Preview Image for custom theme in admin Magento2? Make sure that you have mentioned media tag in the theme.xml file of your theme as shown below: <media> <preview_image>media/preview.jpg</preview_image> </media> Then you have image preview.jpg …
Read More
Do you want to change the product name, sku on the swatches click of configurable product in Magento2? The current functionality is in configurable product, if the customer clicks on the swatches then it updates the product image and product …
Read More
Today we are going to learn about How to “Add to Wishlist” Without Redirecting to Wishlist Page in Magento 2. Add to Wishlist provides customers the option to add their products to the wishlist, makes their future purchases, send this …
Read More
In this article, we are going to learn about calling the newsletter in the static block of Magento2. First, you need to decide in which static block you need to display the newsetter. In that static block, call newsletter like …
Read More
While development, most of the times, we need to change/add code in the template file (.phtml file). In this case, we can not modify the core template file, so what we will do is we will override the template file …
Read More
WElcome to this article, I hope this article will resolve your error. Error: – Deprecated Functionality: pathinfo(): Passing null to parameter #1 ($path) of type string is deprecated in /vendor/magento/framework/View/Asset/PreProcessor/FileNameResolver.php on line 44 Solution: –  Go to the parent directory …
Read More
The newsletter subscription module in Magento has only one field (email) by default. If you want to add  an extra field to the form (like the name), perform the following steps: Register your Module Display new fields on the frontend …
Read More
Newsletters are an essential part of eCommerce marketing. With this you have a list of your customer’s emails, you can easily inform them about new products, specials, promos, with updates and news, etc on your Magento store. To understand the …
Read More
In Magento2, if you want to change the code of the js files located in the lib directory. Then we should not modify the core js files located in lib folder. Then how to make changes to it is to …
Read More
In some cases, The categories entity had an empty request_path. Go to the database and with the help of this command find the categories or products entities that have an empty request_path SELECT * FROM `url_rewrite` WHERE request_path=”; Delete all those entries and use the cache …
Read More
If you are facing issue of “We can’t find products matching the selection” Error after migration. To resolve these issues, you should look into the var/log/exception.log. In exception.log file, if it shows an issue with the configuration of a custom …
Read More
Do you want to Show Login and Create an Account Form in Popup in Magento2? This is the requirement on most of the Magento2 sites. I have explained each and every step here. Follow step by step to display Login …
Read More
Today, I would like to talk about modal popup. Magento 2 has a great built in possibility to easily add a popup to any place on your page. Let me quickly go through all the necessary files. I will provide …
Read More