Genius. I had some code in my ‘functions.php’ that related to tags which I removed and all is now working 100% and the issue is resolved. You couldn’t tell me what this code attempted to do? Not your job I know, just curious! Thanks for the assistance.
add_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_product_loop_tags’, 5 );
function woocommerce_product_loop_tags() {
global $post, $product;
$tag_count = sizeof( get_the_terms( $post->ID, ‘product_tag’ ) );
echo $product->get_tags( ‘, ‘, ‘<span class=”tagged_as”>’ . _n( ‘Tag:’, ‘Tags:’, $tag_count, ‘woocommerce’ ) . ‘ ‘, ‘.</span>’ );
}