Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #18533

    Tariq s
    Participant

    Hello, my first post 🙂

    Please can someone tell me how to stop page titles showing on only some of my pages?

    Thanks
    X

    #18550

    Christian
    Moderator

    Hey Tariqs,

    Thanks for writing in.

    In the page editor, there is an option / checkbox to enable or disable page title.

    Please see http://prntscr.com/2waseh

    Hope that helps. 🙂

    #18587

    Tariq s
    Participant

    Perfect thankyou sir

    #18600

    Christian
    Moderator

    You’re welcome Tariq.

    #20712

    Jonas B
    Participant

    Is there a way to diasble the space as well? When I use the option “disable page title” the white space where the title used to be is still there.

    I’m using Renew.

    #20876

    Rubin
    Keymaster

    Hey Jonas,

    can you show us the site of yours so we can take a look at the space? Thanks!

    #26551

    Jeremy P
    Participant

    Can I piggyback on this thread? Same question, renew as well. http://www.smartnutrition.ca

    #26890

    Kory
    Keymaster

    Hey guys,

    Thanks for writing in! This is one of those little nuances of working with different Stacks that can be tricky, but we’re certainly working on streamlining this a little bit across all of our Stacks. The difference with Renew is that the breadcrumbs also show in this container, so disabling the title would also take these away for certain users, but we’ll likely be changing this up in a future version of the theme as stated before. For the time being, you can add a custom class to your pages that you don’t want titles on in the Custom Class(es) field in the meta box below your editor on the page. The class can be anything, for instance you might add in:

    hide-the-title

    Then you can add in the following CSS via the Custoimzer or the style.css file of your child theme if you’re using one:

    .hide-the-title .x-header-landmark {
      display: none;
    }

    Thanks!

    #345637

    James R
    Participant

    this tip could be dangerous if anything fails along the way, so backup your database before trying this one

    If you want to bulk hide page title on e.g. all pages but still want to have the option of turning page title back on for just a few, I’d recommend using this plugin: https://wordpress.org/plugins/custom-field-bulk-editor/

    1. install/activate plugin
    2. under e.g. Pages, there’s a new menu item Bulk Edit Fields
    3. hit the check all checkbox so all the pages you want to turn page title OFF for are now selected
    4. scroll to the bottom
    5. in the first Custom Field Name box, enter _x_entry_disable_page_title
    6. in the following Value box, enter on
    7. click save custom fields button at the bottom

    all selected pages/posts have the title disabled now.

    #345858

    John Ezra
    Member

    Hi James,

    Thanks for updating the thread and sharing your workaround.

    #610978

    Roninboy
    Participant

    Hi guys

    I remove the page title by clicking on the disable page title box – THEN to remove the white space – use the Gap size shortcode at the top of the page and make it a negative amount. The white space changes as you change screen size so I recommend the following below.
    [gap size=”-80px”]

    Works for me!

    #610983

    Christopher
    Moderator

    Thanks for sharing.