Where exactly in the file structure can I find and edit the markup so that I remove that a href within the thumbnail and product title. I tried searching the template files but can’t seem to find it. It’s calling or echoing this template part (<?php wc_get_template_part( 'content', 'product' ); ?>)
but there wasn’t any markup showing the thumbnail or product title.
<?php
$args = array(
'post_type' => 'product',
'post_per_page' => 12,
);
$crate_products = new WP_Query ( $args );
if ( $crate_products->have_posts() ) : while ( $crate_products->have_posts() ) :
$crate_products->the_post();
?>
<div class="three columns">
<?php wc_get_template_part( 'content', 'product' ); ?>
</div>
<?php wp_reset_postdata(); ?>
<?php endwhile; else: ?>
<?php endif; ?>
<?php wp_reset_query(); ?>