• Resolved taic2005

    (@taic2005)


    Hi
    Can anyone give me a step by step (idiots guide) to change the tag from H4 to H3 to fix my seo.
    Thank you very much

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @taic2005,

    You may please use the code snippet below. Copy it to active theme’s functions.php

    function wt_cli_add_html_wrapper($html, $begin, $end) {
    // wrap our original HTML with the new tags
    $begin = "<h3>";
    $end = "</h3>";
    $html = $begin . $html . $end;
    return $html;
    }
    add_filter('wt_cli_change_privacy_overview_title_tag', 'wt_cli_add_html_wrapper', 10, 3);
    Thread Starter taic2005

    (@taic2005)

    sorry to be daft but where is the active themes functions.php?

    Thread Starter taic2005

    (@taic2005)

    its ok I googled where to put the code. I have no coding experience at all so needed a bit more of a how to add it. all done now though. Thank you

    Plugin Author WebToffee

    (@webtoffee)

    Hi @taic2005,

    Great. Leave us a review if you like the plugin and support.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘change the privacy overview from H4 to H3’ is closed to new replies.