How to have a custom display for both woocommerce archive and product-category pages? [closed]
Generally, you can tell WordPress to load a different template. The mostly seen approaches make either use of the template_redirect or the template_include hook. It is preferable to use template_include as described in this article. Following an example on how to approach this: Code: // load the woocommerce category archive template add_filter( ‘template_include’, ‘wpse138858_woocommerce_category_archive_template’ ); … Read more