Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #702894

    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

    #703082

    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

    #703100

    Danke, das funktioniert super. Gibt es noch ne Möglichkeit die Überschrift von der Schriftgröße anzupassen?

    #703118

    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

    #703135

    Vielen Dank, perfekt!

    #703174

    Hi!

    Glad we could help :)

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Überschrift Produktseite’ is closed to new replies.