In Magento 2, when you create a grouped product, you basically add simple and virtual products to the group. You can also add simple products with custom options to grouped products. Basically, custom options provide some additional choices to the customer for which they pay some additional price. In this article, you will learn to create a simple product with custom options and add it to a grouped product.
Category Archives: Magento2 Tutorial
While creating or editing a product in Magento 2, we add images for the product on the Product page. You can also add videos while editing or creating a product from external resources (Vimeo and YouTube). In this article, you will learn how to add YouTube video on the Product page.
Magento 2.4.4 has a lot to offer store owners and developers with increased security, performance and important bug fixes.
Magento 2 has a variety of shipping methods available, Create a shipping method in Magento 2
There are many ways to override methods and classes. In most situations, using a class is more preferable. Rewriting a new class can create conflict. For this, plugins are introduced. All the classes are defined by their interfaces and configured by di.xml files.
You can also delete orders from the database by using SQL queries. Keep in mind that using this method will remove all the orders.
We are going to remove white space from SKU using script. First we have to create a new file on the root path of your Magento 2 site. Like ‘whitespaceSku.php’
We are going to create slider using Magento 2.4.3 page builder. A page builder is a powerful tool and easy to use. It is user friendly and it saves time.
Custom api in magento 2 means helping online retailers an Application Programming Interface for the own using. API is a required element to connect among the data if you ask for any program or service from other websites.
You can create a robots.txt file in the Magento 2 to control how search engine crawlers access and index your website.
Magento 2 uses RequireJS for its JavaScript library. To add custom JavaScript to Magento 2, you must create a RequireJS-compatible JavaScript file, and then add it to the page via the layout XML.
You have to create module. For that you need to crate a registration.php and module.xml . We will start with registration.php, create this file in app/code/Bay20/Custom directory. Here Bay20 is vendor name and Custom is module name.