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 […]
How to get aadhaar using mobile number or email
Today we discuss about to get lost aadhaar card using mobile number of email. your Aadhaar is an identification number issued by the Unique Identity Authority of India (UIDAI), which plays an important role in many essential tasks. However, if you have lost your Aadhaar card, there is no need to worry as you can […]
Magento2 Option FollowSymLinks not allowed here
Sometimes in Magento2 images are not showing and Internal Server Error on the front-end during the development process. Issue 1. Magento2 image not showing frontend. Issue 2. Magento2 Option FollowSymLinks not allowed here Issue 3. Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server […]
How to withdraw EPF amount online?
In this blog, we will see How to withdraw EPF amount online is simple steps. You can withdraw EPF amount by selecting any reason mentioned in portal. Application for EPF withdrawal online can take 3 working days. To withdraw EPF online, individuals have to activate UAN and link it with the KYC, i.e. Aadhaar, PAN […]
How to configure XAMPP on windows?
In previous post, we discussed about How to install XAMPP on windows. Now lets see how to configure XAMPP on windows. Once you install the XAMPP Server successfully on your local machine. Now its time to open and test it.Open the XAMPP server, you will see a short and simple user interface with modules like […]
How to Install XAMPP on Windows?
In this post, we’ll be showing you how to install XAMPP on Windows. XAMPP server is the environment for PHP development. It is free, open source cross platform web server and very easy to install on local machine. Once install, you can easily manage all your PHP websites or WordPress blogs/sites easily on your local […]
How to Set Up Google Site Kit in WordPress
In this blog we will see how to set up Google Site Kit in WordPress in simple steps. Google Site Kit plugin is one of the important plugin which every WordPress user love. Below are the steps of how to setup Google Sit Kit in WordPress- Login to your WordPress dashboard and click Add New […]
Magento 2 get Helper function in XML
Create a dynamic link in the customer account. Here you make the dynamic link as per your logic. 1) Define helper class {vendor}\{Module}\Helper\Data in navigation link <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:View/Layout/etc/page_configuration.xsd”> <body> <referenceBlock name=”customer_account_navigation”> <block class=”Magento\Customer\Block\Account\SortLinkInterface” name=”customer-account-navigation-new-product-link” after=”-“> <arguments> <argument name=”label” xsi:type=”string”>Some link</argument> <argument name=”path” xsi:type=”helper” helper=”{Vendor}\{Module}\Helper\Data::getLink”></argument> </arguments> </block> </referenceBlock> </body> </page> 2) Now create […]