Tag

Magento 2

22 posts tagged Magento 2

Clear tag
2 min read

HowTo: Create a REST API Call in Magento 2

These code snippets will show you how to ask the Magento REST API and retrieve some data. In this example I will query the Magento REST API to retrieve all products updated since 2018-10-09 …

3 min read

HowTo: Create a Shipping Method in Magento 2

A while ago I needed a flat, custom shipping method with a rate that depended on some of our own business rules. The native flat rate was not flexible enough, so I built a small custom …

2 min read

HowTo: Create Extension Attributes in Magento 2

Extension attributes are one of those Magento 2 concepts that sound complicated but click the moment you use them once. They let you add data to an existing entity (an order, a customer, a …

2 min read

HowTo: Join 2 tables in Magento 2

Recently I faced the situation where I needed the information of a second table in my collection and the first thought that crossed my mind was let’s rewrite the collection to add my own …