Hi,
I am also trying to add a button to show all products as it has version 1.6.
I have added the code to the pagination.tpl:
<nav class="pagination">
<div class="col-md-3">
{block name='pagination_summary'}
{l s='Showing %from%-%to% of %total% item(s)' d='Shop.Theme.Catalog' sprintf=['%from%' => $pagination.items_shown_from ,'%to%' => $pagination.items_shown_to, '%total%' => $pagination.total_items]}
{/block}
</div>
<div class="col-md-2">
<a class="all-product-link float-xs-left float-md-right h4" href="{$urls.pages.category_name}">
{l s='All products' d='Shop.Theme.Catalog'}<i class="material-icons"></i>
</a>
</div>
I modify to urls.pages.category_name, but of course, it gives me the same page, it doesn't show me all the products... any ideas? 🤔🙄
thanks!!