Build a Simple Static page in GraphCommerce – Magento PWA

Create a new route Add the page GraphQL queries required to render the layout (header, footer) Create a new file, /pages/about/about-us.tsx: export default function AboutUs() {  return <>About Us</> } Add GraphQL query In /about/about-us.tsx, replace the previous code with the following: import { PageOptions } from ‘@graphcommerce/framer-next-pages’ import { StoreConfigDocument } from ‘@graphcommerce/magento-store’ import… Continue reading Build a Simple Static page in GraphCommerce – Magento PWA

Adobe commerce/Magento pricing plans

Adobe Commerce Open Source (formerly Magento Open Source) is a free, open-source eCommerce platform​ Open Source: Offers a solid core set of features but requires additional extensions to access advanced functionalities.​ ​ Commerce: Includes a wider range of features out of the box, including B2B commerce, advanced promotions, and personalization tools.​   Thank you.

Magento PWA Setting Storefront

Setup a storefront project using yarn In your terminal, navigate to the directory where you want to install your storefront project and run yarn create @magento/pwa Select a directory for the installation cd pwa-studio-fundamentals Adding the Custom hostname and SSL Cert. yarn buildpack create-custom-origin ./ NOTE: If you encounter any errors while creating a custom… Continue reading Magento PWA Setting Storefront

Magento 2: upload file in frontend

Add menu in Dashboard customer_account.xml in this route_nam_controller_name_action_name.xml layout file call this phtml file ADD this HTML to your .phml file which one used for file upload now user select file and upload here and when user submits button click then ACTION PATH controller call.put this code into your this controller file.

Show category image programmatically in magetno 2

There are two options on the Magento to show the category image on the description page In your layout.xml file add below After creating a new file this file add the ViewModel folder and add the code below.file name is CategoryList.php and your template file add the below code. file name is template.phtml 2nd option… Continue reading Show category image programmatically in magetno 2

SQL Issue on the server

Job for mysqld.service failed See “systemctl status mysqld.service” This message came after deploying the mysql service and we will not be able to run the service. use the terminal to route to the following commands This will resolve the issues on the server and will be able to run the MySQL services on the local… Continue reading SQL Issue on the server

Add Custom Currency to Magento 2

As we all know Magento 2 does not support CryptoCurrency yet, so here we are going to learn how we can add a new currency. The very first step to start with is to modify your module’s registration.php file Here is the code for the CurrencyBundle.php file, keep this fine in app/code/Vendor/Module/Override/CurrencyBundle.php Now we will… Continue reading Add Custom Currency to Magento 2

Installing PWA with Magento 2 yarn error

Yarn error during the installtion For this we have to add the following in the terminal In Linux or Mac Using PWA STUDIO For Magento Follow the linkhttps://developer.adobe.com/commerce/pwa-studio/tutorials/setup-storefront/ arn basically stands for Yet Another Resource Negotiator. Developed by Facebook, Yarn is an extremely efficient packet manager that lets you share code with other developers. When… Continue reading Installing PWA with Magento 2 yarn error