• Resolved 4090

    (@4090-1)


    Can someone please advise how I can change the H1 Heading to H2 and the H2 Subheading to H3.

    As the current situation creates 2 x H1 tags (one on the page and one on the age gate page).

    Thanks very much

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Phil

    (@philsbury)

    Hi @4090-1,

    I think there’s a couple of examples in the forums somewhere, bu essentially you can add the following to your functions.php:

    add_filter('age_gate_logo', function ($html) {
        return str_replace('h1', 'h2', $html);
    });
    
    add_filter('age_gate_messaging', function ($html) {
        return str_replace('h2', 'h3', $html);
    });

    thanks
    Phil

    Thread Starter 4090

    (@4090-1)

    Phil,

    Thank you very much.

    I did look in the forum but could not find the answer to this.

    Plugin Author Phil

    (@philsbury)

    No problem, I couldn’t find it either! ˉ\_(ツ)_/ˉ

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change Heading to H2 and Subheading to H3’ is closed to new replies.