Jump to content

Retirer la pagination des listes produits


Recommended Posts

Bonjour,

J'aimerai retirer quand je suis dans une de mes catégorie avec l'ensemble de mes produits, la pagination en bas.
Je viens de voir qu'en fait ma pagination était juste cachée en css par un display:none sauf que cela me pose un problème pour mon référencement.

Quelqu'un peut-il m'aider et me dire comment et où je peux définitivement ôter cette pagination ?

Merci d'avance pour votre aide.

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

Bonjour Eolia,

Merci pour votre retour mais je n'ai pas de pagination.tpl dans mon fichier product-list.tpl (ci-dessous).
J'ai regardé dans d'autres fichiers et je n'ai rien trouvé 😞

{block name='content'}
  <section id="main">

    {block name='product_list_header'}
      <h2 class="h2">{$listing.label}</h2>
    {/block}

    <section id="products">
      {if $listing.products|count}

        <div id="">
          {block name='product_list_top'}
            {include file='catalog/_partials/products-top.tpl' listing=$listing}
          {/block}
        </div>

        {block name='product_list_active_filters'}
          <div id="" class="hidden-sm-down">
            {$listing.rendered_active_filters nofilter}
          </div>
        {/block}

        <div id="">
          {block name='product_list'}
            {include file='catalog/_partials/products.tpl' listing=$listing}
          {/block}
        </div>

        <div id="js-product-list-bottom">
          {block name='product_list_bottom'}
            {include file='catalog/_partials/products-bottom.tpl' listing=$listing}
          {/block}
        </div>

      {else}

        {include file='errors/not-found.tpl'}

      {/if}
    </section>
      {if $category.description}
        <div id="category-description" class="text-muted">{$category.description nofilter}</div>
      {/if}
  </section>
{/block}
 


 

Link to comment
Share on other sites

Ah ben c'est sur , en 1.7 ce n'est pas la même architecture

Allez voir ce qu'il y a dans le fichier catalog/_partials/products-bottom.tpl

qui est appelé ici:  {include file='catalog/_partials/products-bottom.tpl' listing=$listing}

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...