Kieskeurignl module
Kieskeurig.nl does not have a public affiliate program. Please contact the Kieskeurig team directly to gain access to their affiliate program and your API credentials.
To search for products you can use:
- EAN
- Kieskeurig product ID
- Kieskeurig product URL
- Product title (keyword search)

Kieskeurig API does not return direct product links or merchant domains. For this reason, you need to add
mergant -> domain
matching pairs manually. Add in your functions.php file code like this:function my_kieskeurignl_merchant2domain($m2d)
{
$m2d['Amazon'] = 'amazon.nl';
$m2d['JBlokker connect'] = 'blokker.nl';
$m2d['Bemmel en Kroon'] = 'bemmelenkroon.nl';
return $m2d;
}
add_filter('cegg_kieskeurignl_merchant2domain', 'my_kieskeurignl_merchant2domain', 10, 1);
Last modified 6mo ago