custom/plugins/ArboroProductListingLayout/src/Resources/views/storefront/cbax-manufacturer/component/manufacturer/product-listing.html.twig line 1

Open in your IDE?
  1. {#
  2. # Project:      www.betten-abc.de
  3. # Company:      arboro GmbH
  4. # Created by:   Daniel Geike
  5. # Created on:   16.09.22
  6. # Description:
  7. #}
  8. {% sw_extends "@CbaxModulManufacturers/storefront/cbax-manufacturer/component/manufacturer/product-listing.html.twig" %}
  9. {% block element_product_listing_pagination_nav_top %}
  10.     {% set totalEntities = total ? total : searchResult.total %}
  11.     {% set totalPages = (totalEntities / searchResult.criteria.limit)|round(0, 'ceil') %}
  12.     {# hide listing actions #}
  13.     {% if totalPages is same as(1.0) %}
  14.         <style>
  15.             .cms-block-cbax-product-listing {
  16.                 margin-top: 16px;
  17.             }
  18.             .cms-element-product-listing-actions {
  19.                 display: none;
  20.             }
  21.         </style>
  22.     {% endif %}
  23.     {{ parent() }}
  24.     {% block element_product_listing_pagination_top_product_layout %}
  25.         {% sw_include "@Storefront/plugin/component/product/layout.html.twig" ignore missing with {
  26.             views: views
  27.         } %}
  28.     {% endblock %}
  29. {% endblock %}