• Resolved EvanEverman

    (@evaneverman)


    Is there a plugin-based way of hiding/showing the site title on tagline on some pages and not on others? My theme Crisp Persona allows me of course to set it blank, but I’d like to be able to hide it completely (and free up the space it takes) on selected pages. I’d rather not go the display:none route.

    I’d like to hide them at https://www.evaneverman.com/thefortyminutelover/ but display them on all/most of the other pages on the domain.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    but I’d like to be able to hide it completely (and free up the space it takes) on selected pages. I’d rather not go the display:none route.

    You mean you want a PHP solution?

    Thread Starter EvanEverman

    (@evaneverman)

    I’ve found to date that almost any functionality I’ve wanted – somebody has implemented a plugin for it. I was hoping that this was the case here. But if it’s not, I’m open to modifying either the HTML or PHP directly.

    I’m not sure why you don’t want a display: none solution. It would certainly free up the space for the content in the sidebar.

    .page-id-219 .site-title,
    .page-id-219 .site-description {
       display: none;
    }
    Thread Starter EvanEverman

    (@evaneverman)

    Really what I meant was I’d rather not modify code, but I’ve added your suggestion by using a Custom CSS plugin, and it works well.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide site title and tagline on a page-by-page basis?’ is closed to new replies.