Hallo Gemeinde,
ich möchte auf der Produktseite die Produktüberschrift von H1 in H2 ändern. Das ganze soll wirklich nur für die einzelnen Produktseiten erfolgen.
Kann wer helfen? Screenshot zur Visuallisierung anbei.
Besten Dank
Hey Mac_ma,
Try to add this code in functions.php:
remove_action('woocommerce_single_product_summary','woocommerce_template_single_title',5);
add_action('woocommerce_single_product_summary', 'woocommerce_my_single_title',5);
if ( ! function_exists( 'woocommerce_my_single_title' ) ) {
function woocommerce_my_single_title() {
?>
<h2 itemprop="name" class="product_title entry-title"><?php the_title(); ?></h2>
<?php
}
}
Hope this helps :)
Best regards,
Nikko
Danke, das funktioniert super. Gibt es noch ne Möglichkeit die Überschrift von der Schriftgröße anzupassen?
Hi!
You’re welcome, try to add this code to Quick CSS (located Enfold > General Styling):
h2.product_title.entry-title {
font-size: 24px !important;
}
Kindly change the value as you see fit. Hope it helps :)
Cheers!
Nikko
Vielen Dank, perfekt!
Hi!
Glad we could help :)
Best regards,
Nikko