dawa212 Posted December 16, 2013 Share Posted December 16, 2013 Bonjour. J'ai déplacé le bloc informations clients et depuis, le panier, uniquement depuis ce bloc est inaccessible, il mène vers une 404. Il indique "index.php?controller=" comme lien. Que dois-je faire, j'en ai aucune idée Merci Link to comment Share on other sites More sharing options...
Gregory Roussac Posted December 17, 2013 Share Posted December 17, 2013 Bonjour, Essayez en back office de vérifier l'url re ecrite pour la page order our order-opc ? Cordialement Link to comment Share on other sites More sharing options...
dawa212 Posted December 17, 2013 Author Share Posted December 17, 2013 Merci, je sais pas si ça m'a aidé mais ça m'a fait réfléchir... En créant un nouveau hook, j'ai du l'activer dans le bloc informations clients (blockuserinfo) mais j'avais pas recopié les assignations. Donc, il faut tout recopier. Dans la page blockuserinfo.php pour un nouveau hook: public function hooknouveau($params) { if (!$this->active) return; $this->smarty->assign(array( 'cart' => $this->context->cart, 'cart_qties' => $this->context->cart->nbProducts(), 'logged' => $this->context->customer->isLogged(), 'customerName' => ($this->context->customer->logged ? $this->context->customer->firstname.' '.$this->context->customer->lastname : false), 'firstName' => ($this->context->customer->logged ? $this->context->customer->firstname : false), 'lastName' => ($this->context->customer->logged ? $this->context->customer->lastname : false), 'order_process' => Configuration::get('PS_ORDER_PROCESS_TYPE') ? 'order-opc' : 'order' )); return $this->display(__FILE__, 'blockuserinfo.tpl'); } Link to comment Share on other sites More sharing options...
Gregory Roussac Posted December 17, 2013 Share Posted December 17, 2013 sinon vous pouvez rappeler l'ancien hook qui fait les assignations plutôt que faire une redondance. return $this->ancienhook($params); Cordialement Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now