Sometimes after updating to Magento 2.4.3 the pager on the category page goes missing. This happens when you are overwriting templates/product/list.phtml in your theme. Just open that file and replace
1 |
<?= $block->getToolbarHtml() ?> |
with
1 |
<?= $block->getChildBlock('toolbar')->setIsBottom(true)->toHtml() ?>. |
This should solve the problem, your pager…