Create enquiry form in Magento 2
Today I am going to explain How to Create Custom enquire Form in Magento 2. Forms are a great way to gather customer information and insert into database or send email to the admin user as per the requirement. With the help of the below code, you can Create Custom Form in Magento 2 Frontend. […]
Magento 2 add custom js file in module
Hey reader today we will disscuss about to add js file in custom module . Please follow below step to done this job. Step 1. Create requirejs-config.js file on below path :- app/code/VendorName/ModuleName/view/frontend/requirejs-config.js var config = { map: { ‘*’: { myjs: ‘VendorName_ModuleName/js/myjs’, } }, deps: [‘jquery’] }; Step 2. Create myjs.js file on below […]
Setup Multi Website in Magento 2
Today we discuss how to create multi-websites in Magento 2 . Magento allows you to setup multi-websites for your single installed Magento. For example www.example.com is a main website and you want to like this www.example.com/newsetup/ Then you need to create newsetup dirctory(folder) on magento root dirctory. Step 1. Find the website code 1. Go […]
Price range filter in Magento 2
Today we disscus about price range filter in Magento 2, Sometime we need product collection filter by min_price, final_price and minimal_price range in custom module. There are some below solutions. Solution 1 The final_price is part of the price index tables, so you can’t work with it the same way as you would do with […]
How to open PPF account online?
In this blog, we will discuss how to open PPF account online? Public Provident Fund (PPF) is the preferred savings funds by the working class. This long term investment can also helps you to avail tax benefits. A PPF account can be opened by any individual at any post offices or banks branches offline. The […]
Magento 2 API security issue
Today we discuss about API security issue in magento 2. By default, Magento 2 now prevents anonymous users from accessing the APIs that could reveal sensitive information. When the feature is enabled, the user must have administrator privileges to execute the affected APIs. Preventing anonymous access to these endpoints could cause third-party integrations to fail. […]
Types of Flows in Power Automate
In this blog we will discuss about types of flow in Power automate. Microsoft Power Automate is part of Microsoft Power Platforms which provides a lot of perks within your workplace to automate your repetitive tasks. Power Automate provides you Desktop flow and Cloud flow for automate business processes. Using Power Automate you can connect to more […]
Top 5 Hosting Providers in India
In this blog, we will discuss about top 5 hosting providers in India. Web hosting is a service that allows anyone to post a website/web page/web application onto the internet. A web hosting service provider, is a business that provides the platform and services needed for the website or webpage to be viewed online. Websites […]
Re-emerging in a connected world
This blog will give you brief information about Re-emerging in a connected world. In a digital world, all businesses need to be increasingly present on the internet, for anyone who is not an avid consumer of social networks in the era of the internet, it is hard that they or their business can reach their […]
Add multiple sitemap into one in Website
Hello reader today we will discuss add multiple sitemap into one in Website. What is sitemap : An XML sitemap contain the website URls. It can have a maximum of 50,000 URLs, and an uncompressed file size limit of 50MB. When we exceed the limit, we will need to split our URLs across multiple XML […]
Magento 2- Product images not showing in PWA setup
Today we share solution of images not showing in PWA issue. Someone had done a PWA setup on the local machine. But facing product and category images issue. Try below solution:- Solution 1. Locate the following line in the .env file of the root folder: IMAGE_OPTIMIZING_ORIGIN=auto Replace it with: IMAGE_OPTIMIZING_ORIGIN=backend Run : yarn watch Solution […]
Magento 2 – Cannot find field “newsletter_enabled” on type StoreConfig pwa-studio
“Cannot query field “newsletter_enabled” someone face this kind of issue when setup PWA with magento. Error :- Error: Cannot query field “newsletter_enabled” on type “StoreConfig”. (… 1 errors total) at /var/www/vhosts/mysite.com/htdocs/pwa-studio/node_modules/@magento/pwa-buildpack/lib/Utilities/graphQL.js:54:21 at processTicksAndRejections (node:internal/process/task_queues:96:5) at async module.exports (/var/www/vhosts/mysite.com/htdocs/pwa-studio/webpack.config.js:62:29) Solution:- Run the below command in Magento root which is defined in the .env file of the […]