#1314

Hi there,

Please add code:

add_filter('wc_get_template_part', 'demo_change_template_part', 10, 3);

function demo_change_template_part($template, $slug, $name) {
    $template = wc_get_template_part('content', 'product-list');
    if (isset($_GET['layout'])) {
        if ($slug == 'content' && $name == 'product' && $_GET['layout'] == 'grid') {
            $template = wc_get_template_part('content', 'product');
        }
    }

    return $template;
}

into file function.php in child-theme.

If you need to help, please send Admin web account for me, I will check and help you.