Jump to content

Montrer les tailles disponible sur le /miniatures/product.tpl (la liste de produits)


Recommended Posts

  • 2 weeks later...

Je suis débutant sur Prestashop si quelqu'un pouvait me venir en aide....

Je pense qu'il suffirait que je récupère la variable $groups qui est disponible sur catalog/product.tpl mais je n'ai pas compris comment je peux la mettre a disposition sur catalog/_partials/miniatures/product.tpl. J'ai cru comprendre que cela me demanderais de créer un module ? Éclairez moi sur la démarche  à suivre s'il vous plait.

version: 1.7.5.1

Merci

Edited by JulienGo (see edit history)
Link to comment
Share on other sites

  • JulienGo changed the title to Montrer les tailles disponible sur le /miniatures/product.tpl (la liste de produits)
  • 2 weeks later...
  • 2 weeks later...

Bonjour @JulienGo,

Effectivement, il faut créer un module pour cela et récupérer les attributs du produit concerné. Voici un code qui pourra t'aider

$product_id = $params ['product'] ['id_product'];

        $product = new Product ( $product_id, $this->context->language->id );
        $link = new Link ();
        $product_link = $link->getProductLink ( $product ) . '#';
        $combinaisons = $product->getAttributeCombinations ( $this->context->language->id );

        $combs = array();

        foreach ( $combinaisons as $key => $comb ) {
            if ( $comb['group_name'] == 'Taille' ) {
                array_push($combs,
                    array(
                        'attribute' => $comb['attribute_name'],
                        'quantity' => $comb['quantity'],
                        'link' => $product_link . $this->generateUrl($comb['id_attribute'], $comb['group_name'], $comb['attribute_name'])
                    )
                );
            }
        }

        $this->smarty->assign ( array (
            'combinaisons' => $combs,
            'product_id' => $product_id
        ));

 

Edited by atatos (see edit history)
  • Like 1
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...