Archived topic
How to show pagination on product category page
3 replies · Started by Rudita on November 7, 2022
Hi, I want to enable pagination on my product category page. Here my page link: https://puterasilver.com/bali-silver-earring/. This page I created with GP premium.
My other category pages which are woocommerce original page the pagination showing Ok.
Need advise please
Thank you
Regards
Rudita
Hi there,
the Blocks that Woocommerce adds DO NOT support pagination.
if you want to add paginated lists of products to a static page then you would need to use the Woocommerce shortcodes:
Hi David,
Thank you for the information. I created category page with Woocommerce shortcode with pagination. How to customize it to look like this https://puterasilver.com/bali-silver-earring/, not like this https://puterasilver.com/earring1page/.
Thank you
Regards
Rudita
Hi Rudita,
Try adding this in Appearance > Customize > Additional CSS:
.woocommerce ul.products li.product.type-product .woocommerce-loop-product__title {
font-size: 14px;
font-weight: 700;
}
.woocommerce ul.products li.product.type-product .woocommerce-Price-amount {
font-size: 12px;
color: #000;
}
.woocommerce ul.products li.product.type-product a.add_to_cart_button {
background-color: var(--accent-2);
border-radius: 9999px;
color: #fff;
font-size: 14px;
font-weight: 400;
margin-top: 0;
}
.woocommerce ul.products li.product.type-product {
text-align: center;
}
Alter the values and colors to your preference.