How to hide duplicated shop items on the woocommerce shop page - kary4/divituts GitHub Wiki

Hi. Add the following code to the very top of the Custom CSS field in ePanel:

.post-type-archive.post-type-archive-product .page-description+.woocommerce-result-count {
    display: none;
}
.post-type-archive.post-type-archive-product .page-description+.woocommerce-result-count+.woocommerce-ordering {
    display: none;
}
.post-type-archive.post-type-archive-product .page-description+.woocommerce-result-count+.woocommerce-ordering+.products {
    display: none;
}
.post-type-archive.post-type-archive-product .page-description+.woocommerce-result-count+.woocommerce-ordering+.products+.woocommerce-pagination {
    display: none;
}