Magento 2: Cannot set cookie when full page cache is enabled
I have this working code for setting the cookie for a visitor: $metadata = $cookieMetadataFactory ->createPublicCookieMetadata() ->setDuration(86400 * 90) ->setPath('/'); $cookieManager->setPublicCookie( 'cookie_name', 'cookie_value', $metadata ); But, since I enabled full page cache for the website, this code stopped working. Disabling…