I want to change the title text of the related products and remove the <h2>
for SEO reasons.
I found some answers to change the title text here: Rename Related Products title in Woocommerce 3 But the code from there and the answer doens't work (anymore?).
And there is an other problem. The heading uses the <h2>
tag which I want to change also.
I found the following code in the related.php
template:
<?php
$heading = apply_filters( 'woocommerce_product_related_products_heading', __( 'Related products', 'woocommerce' ) );
if ( $heading ) : ?>
<h2><?php echo esc_html( $heading ); ?></h2>
<?php endif; ?>
Is there any way to chage the complete output of $heading
without changing the template file?