I've tried this hack from a previous thread:
Replace woocommerce_content() in woocommerce.php with:
if ( is_singular( 'product' ) ) {
woocommerce_content();
} else {
//For ANY product archive.
//Product taxonomy, product search or /shop landing
woocommerce_get_template( 'archive-product.php' );
}
This now loads the archive-product.php
from the /plugin
folder which is a step forward, but it should really load the archive-product.php from the /myTheme
folder. I don't want to mess around in the plugin folder for obvious reasons...
Has anyone found a workaround for this?