Hello,
1. To change the tag for title product tabs, you need to override the xts_product_tabs_template function in the child theme and change the h3 tag
2. Title of products:
function woocommerce_template_loop_product_title() {
?>
<span class="woocommerce-loop-product__title xts-entities-title">
<a href="<?php echo esc_url( get_the_permalink() ); ?>">
<?php echo get_the_title(); // phpcs:ignore ?>
</a>
</span>
<?php
}
3. For the product categories titles, also put the code to the child theme:
function woocommerce_template_loop_category_title( $category ) {
?>
<span class="xts-entities-title woocommerce-loop-category__title">
<a href="<?php echo esc_url( get_term_link( $category, 'product_cat' ) ); ?>">
<?php echo esc_html( $category->name ); ?>
</a>
</span>
<?php if ( $category->count > 0 && xts_get_opt( 'categories_product_count' ) ) : ?>
<div class="xts-cat-count">
<span>
<?php echo esc_html( $category->count ); ?>
</span>
<span class="xts-cat-count-text">
<?php echo sprintf( _n( 'product', 'products', $category->count, 'xts-theme' ), $category->count ); // phpcs:ignore ?>
</span>
</div>
<?php endif; ?>
<?php
}
Kind Regards