xmilo Posted June 5, 2014 Share Posted June 5, 2014 I made a payment information page at CMS. How can I make this page to be available to only registered and logged in customer? Thanks. Link to comment Share on other sites More sharing options...
DevNet Posted June 6, 2014 Share Posted June 6, 2014 Hi, I thinks you mus override the cms controller page with a test like : public function initContent() { if (!$this->context->customer->isLogged()) Tools::redirect('index.php?controller=authentication'); parent::initContent(); } Regards 1 Link to comment Share on other sites More sharing options...
Recommended Posts