Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @pixelshrink ,

    The free Kadence theme does not have options to change the single post titles from an h1 to an h2. However, you can accomplish the task using a code snippet. You can add PHP code to your site using a plugin like Code Snippets or your functions.php file (in a child theme).

    For example, here is code that should work with the Kadence theme.

    add_action('wp_footer', function() {
        ?>
            <script>
                jQuery(document).ready(function($) {
                    $('h1.entry-title').replaceWith(function() {
                        return $("<h2 class=entry-title>").append($(this).contents());
                    });
                });
            </script>
        <?php
    }, 20);

    Hi there,

    This topic has been inactive for more than 2 months. We’ll proceed to marking this as resolved.

    If you have further questions or need additional assistance, feel free to start a new topic or refer to our Kadence Help Center here: https://www.kadencewp.com/help-center

    Please note that you can also submit a support ticket via these channels.

    Thank you for your understanding!
     
    Kind Regards,
    Michael Taro

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.