• Hi, I need help.

    The title of my news on the blog is h3 and I need it to be h2 to improve SEO.

    In which file you can change the “h3.entry.title” tag to be h2 or paragraph.

    Thank you.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey,
    In a child theme you can add this to the child themes functions.php file.

    remove_action( 'kadence_post_excerpt_header', 'virtue_post_excerpt_header_title', 10 );
    add_action( 'kadence_post_excerpt_header', 'custom_post_excerpt_header_title', 10 );
    function custom_post_excerpt_header_title() {
    	echo '<a href="'.get_the_permalink().'">';
        	echo '<h2 class="entry-title" itemprop="name headline">';
              		the_title();
        	echo '</h2>';
        echo '</a>';
    }

    Ben

    Thread Starter demoasister

    (@demoasister)

    Hello Ben

    Thank you very much solve the problem with my H.

    I have the same problem in the carousel of recent entries.

    It’s h5 instead of being h4

    Would you know how to fix it?

    Thank you very much Ben

    • This reply was modified 6 years, 9 months ago by demoasister.
    hannah

    (@hannahritner)

    Hi @demoasister,
    Sorry for the delay! Ben must have overlooked your reply. I’ve sent this over to him and he will respond as soon as he is available.
    Thanks for your patience!

    Hannah

    Hey,
    Sorry about the delay, I missed the second question:

    For the carousel you can use a function like this:

    remove_action( 'kadence_post_carousel_small_excerpt_header', 'virtue_post_carousel_title', 10 );
    add_action( 'kadence_post_carousel_small_excerpt_header', 'custom_post_carousel_title', 10 );
    function custom_post_carousel_title() {
    	echo '<h4 class="entry-title">';
    		the_title();
    	echo '</h4>';
    }

    Ben

    Thread Starter demoasister

    (@demoasister)

    Hi @hannahritner

    Thanks for the warning, no problem. 🙂

    Hi @britner

    Thank you very much for your answers, everything is resolved. A very professional team thanks again.

    Regards

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘h3 entry-title blog’ is closed to new replies.