Apologies, I was looking at the topic owner’s link.
Ok, so why don’t you have the permalinks set to something other than default? I’ve checked the default setting here and it works fine, the pagination is part of WooCommerce, not the theme, so I imagine the issue would occur on the default WordPress theme too. If this is the case, you’ll need to ask WooCommerce support about the issue.
Do you have the catalog mode enabled? If so this is why price is hidden. You can show price with this custom css:
.woocommerce ul.products li.product .price, .woocommerce div.product p.price {
display: block!important;
}
– Ed