Jump to content

bloc informations clients panier => 404


Recommended Posts

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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...