Product category text is displaying incorrectly.
-
The product category page text displays correctly on the first page, but disappears after pagination. All plugins have been disabled for testing, but there is still no response.
Hello,
Please confirm the permission for plugin deactivation and switching to the parent/default theme for testing.
Looking forward to collaborating with you!
Best Regards,
Hello,
After reviewing your issue in more detail, we can see that the category description is displayed inside the collapsible content element. On the first page it is shown correctly, but it does not appear on the subsequent paginated pages.
In this case, everything is working as expected, because this is the default way WooCommerce outputs category descriptions. You can verify this by checking the same behavior on a default WooCommerce theme.
Best Regards,
Is there a way to solve this, or how to hide it on the second page?
Hello,
You can use the following Custom CSS, which will fix your problem.
.tax-product_cat .wd-content-layout .wd-collapsible-content:not(:has(.wd-shop-desc)) {
display: none;
}
Best Regards,