The ColorPicker Ui Component
A hidden component to choose and implement color values

As part of the contributions I'm currently doing to the Adobe Stock Integration Project I recently had to implement a search filter for the color attribute.
I first heard about Valet Plus while ago and have to admit that did not pay too much attention.
When you work in an agency every minute count and if your local environment does not work, and you have to spend time fixing it you are dead.
HowTo: Create an Alternative Success Page for a Payment Method in Magento2
This week I had the task to build an alternative success page for customers who pay with a specific payment method.
If the customers select Bank Transfer method they should be redirected to https://magento2.test/checkout/banktransfer/success
.
If any other payment method is selected the customer sh...
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 00:00:00
.
This method assumes:
- You are using an admin user to generate the token.
- You have a Magento2 instance running in your local environment.
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 on stuff but... is that really the right approach?
First, by rewriting the core collection class I am going to af...