I'm setting the cookie value in FrontControlller:
this->context->cookie->utm_campaign = $_GET['utm_campaign'];
But accessing in the OrderConfirmationControllerCore is coming null:
$this->context->cookie->utm_campaign;
I've also tried and it's still coming empty:
$this->context->smarty->assign('utm_campaign', $this->context->cookie->utm_campaign);