Hi,
I resolved doing 2 thinks:
1.- Desactivate the coments in the products (Woocommerce settings)
2.- Change the code in tabs.php:
<div class=”accordion-group”>
<div class=”accordion-heading”>
“>
<?php echo apply_filters( ‘woocommerce_product_’ . $key . ‘_tab_title’, esc_html( $tab[‘title’] ), $key ); ?>
</div>
<div id=”product-<?php echo esc_attr($key); ?>” class=”accordion-body collapse <?php echo $class; ?>”>
<div class=”accordion-inner”>
<?php call_user_func( $tab[‘callback’], $key, $tab ) ?>
</div>
</div>
</div>
For this:
<div class=”accordion-group”>
<div class=”accordion-heading”>
“>
<?php echo apply_filters( ‘woocommerce_product_’ . $key . ‘_tab_title’, esc_html( $tab[‘title’] ), $key ); ?>
</div>
<div id=”product-<?php echo esc_attr($key); ?>” class=”accordion-body collapse”>
<div class=”accordion-inner”>
<?php call_user_func( $tab[‘callback’], $key, $tab ) ?>
</div>
</div>
</div>