We will define prepare our code in helper. In that function, we have to pass parameters for order creation.
Continue reading “How to create order programmatically in Magento 2”Drop a column from the table using db_schema.xml in Magento 2
Well, now in Magento 2 one can create a table using db_schema.xml if you want to drop column(s) using the same approach. You landed on the right page.
Drop column using attribute disabled=”true” in db_schema.xml.
Continue reading “Drop a column from the table using db_schema.xml in Magento 2”How to add static cms block in xml file
- CMS block calling from layout.
block_id = CMS block identifier
Continue reading “How to add static cms block in xml file”How to load Order by increment id
Get order data by increment id in magento 2
To get order first name, last name, order id, order total and other data using Magento\Sales\Api\Data\OrderInterfaceFactory interface.
Continue reading “How to load Order by increment id”How to load customer by id
Get customer data by id in magento 2
To get customer first name, last name, customer group and other data using Magento\Customer\Api\CustomerRepositoryInterface interface.
Continue reading “How to load customer by id”