xaxa Posted April 26, 2017 Share Posted April 26, 2017 Bonjour, étant sur la version 1.6.1.9, j'aimerais récupérer l'indice de page sur laquelle je me trouve dans la page catégorie. Par exemple, je me trouve sur la page : http://www.watche-site.com/15-objets#/page-2, j'aimerais récupérer dans une variable la valeur 2. Quelqu'un saurait-il comment y arriver? Merci par avance Link to comment Share on other sites More sharing options...
Eolia Posted April 26, 2017 Share Posted April 26, 2017 curieuse votre url, elle devrait plutôt être de la forme http://www.watche-si...-objets?p=2 Du coup un Tools::getValue('p') vous renvoie la valeur Link to comment Share on other sites More sharing options...
xaxa Posted April 26, 2017 Author Share Posted April 26, 2017 J'utilise le module à facette, c'est pour cela que les URL sont sous cette forme. Link to comment Share on other sites More sharing options...
Eolia Posted April 26, 2017 Share Posted April 26, 2017 Donc ce paramètre est utilisable dans blocklayered.php Link to comment Share on other sites More sharing options...
xaxa Posted April 27, 2017 Author Share Posted April 27, 2017 Pourriez-vous m'en dire d'avantage sur ce paramètre? Link to comment Share on other sites More sharing options...
Eolia Posted April 27, 2017 Share Posted April 27, 2017 Je ne sais pas ce que vous voulez faire de ce paramètre ni où vous le voulez mais dans blocklayred.php je trouve: /* Pagination uses - as separator, can be different from $this->getAnchor()*/ if (strpos($url_attribute, 'page-') === 0) $url_attribute = str_replace('-', $this->getAnchor(), $url_attribute); ... Votre paramètre recherché est $page = strpos($url_attribute, 'page-'); par exemple 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