• Hi, i need hide the title of page in frontpage, i copy the file front-page.php to my child theme, and i do comment to <?php the_title( ‘<h1 class=”page-title title-font no-margin-bottom text-center text-italic”>’, ‘</h1>’ ); ?> but it not does hide the title.
    Thank in advance.

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

    You can hide it with css. Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer

    
    .home .page-title {
      display: none;
    }

    Hope this will helps you.

    Thanks.

    Thread Starter gnujach

    (@gnujach)

    Thank saurabh. You know why the front-page.php file does not work on my theme child?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide title in front-page’ is closed to new replies.