Okay
  Public Ticket #685930
Removing title bar on some pages
Closed

Comments

  • digitalp started the conversation

    First let me start by saying this theme is incredibly well put together: easy to customize and very beautiful.

    My request would be the ability to hide the Page Title Area on specific pages. For example, I do not want a Page Title Area on the individual Services pages. I prefer the look of having the service name in the Title field of a text field on the page\'s content, and having the title repeated in the large Page Title Area below the navigation seems excessive.

    Is there any way to disable this functionality on specific pages, while keeping it on others?

    Thank you!

  •  1,638
    Barry replied

    Hi there

    Thank you for the compliment!

    That's possible with some custom CSS. You need to check the body id tag of that specific page. Which you can see if you open the inspector of your browser or if you hover over a page title in the Pages tab of the admin area. You will see a long URL at the bottom of your browser where you can find the ID.

    Then go to Appearance -> Customizer -> Theme Options -> Custom CSS where you can use the css below (example page ID):

    body-id-300 .page-header { display: none; }
    body-id-250 .page-header { display: none; }

    If you want to remove the breadcrumbs too use this, for example:

    body-id-300 .breadcrumbs { display: none; }

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  • digitalp replied

    Thank you very much for this, Barry. I had not realized the individual pages had page IDs.

    Your implementation works well, however I had to make a few changes:

    - The body class is actually named .page-id-###
    - Add an additional padding-top: 50px; to the .breadcrumbs class as well to ensure the latter wasn't hidden by the navigation bar:

    .page-id-300 .page-header { display: none; }
    .page-id-300 .breadcrumbs { padding-top: 50px; }
    .page-id-250 .page-header { display: none; }
    .page-id-250 .breadcrumbs { padding-top: 50px; }

    Feel free to close this request, and I hope it is useful to others in the future!

  •  1,638
    Barry replied

    My apologies for giving the wrong selector! Should have checked it.

    I'll close the ticket, have a great weekend!

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  • digitalp replied

    I made it into the patch notes!

    UPDATE v1.1.0 – 16-03-2016

    - added: hide page title option per page 
  •  1,638
    Barry replied

    Hi

    This option is for the page title, as we received lots of requests for this option.

    If there is a larger demand to hide the whole page header area we will consider to add it. The reason why we don't add each 'request' in the theme is because it will look like a over bloated multi-purpose theme after some months, and that's not the way a niche theme should go :)

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  • digitalp replied

    Apologies, I am in the process of updating my theme and have not yet checked to see if it was exactly as I had specified below. Thanks for clarifying, I agree with your stance on not including every single requested feature.

    Looking forward to more themes!