For some reason the pagination is missing from the product category pages. It works fine on all other pages and just missing on the product category page.
I have extended the pagination template and its called properly on the shop page but not on the category page for some reason.
Can any one suggest why this is happening?
Also I have around 32 products on this page which should be enough to break records on to pages.
Thanks in advance.
The problem was caused because the post_per_page query argument wasn't set on the archive page.
This can be solved by overriding and adding following code to your woocommerce archive (archive-product.php) page.
Or by adding following to the functions.php of your theme
Hope this helps someone.