/**
* Theme Name: Freshio2 Child
* Description: This is a child theme of Freshio2, generated by Merlin WP.
* Author: <a href="https://pavothemes.com/">Pavothemes</a>
* Template: freshio2
* Version: 3.0.1
*/
/**
 * Force Hippeas-style archive template
 */
add_filter( 'template_include', function( $template ) {
    if ( is_shop() || is_product_category() || is_product_tag() ) {
        $custom = get_stylesheet_directory() . '/woocommerce/archive-product.php';
        if ( file_exists( $custom ) ) {
            return $custom;
        }
    }
    return $template;
}, 99 );