Home › Forums › Support › Disable content title This topic has 7 replies, 3 voices, and was last updated 9 years, 2 months ago by Tom. Viewing 8 posts - 1 through 8 (of 8 total) Author Posts August 15, 2016 at 5:25 am #218230 Andrew Hey guys! Is there a way to disable to page title/content title by default instead of on a page by page basis? August 15, 2016 at 6:51 am #218254 TomLead Developer Lead Developer Hi Andrew, There is a filter you can use to disable the content title completely: generate_show_title More info on filters here: https://generatepress.com/knowledgebase/filter-list/ Hope this helps 🙂 August 17, 2016 at 7:39 am #218872 Andrew Can you explain a bit more? I added this to my theme functions file: add_filter( 'generate_show_title', 'your_function_name' ); function your_function_name() { return 'false'; } Doesn’t seem to have changed anything. August 17, 2016 at 8:00 am #218881 Neil You want to lose the apostrophes, this works add_filter( 'generate_show_title', 'your_function_name' ); function your_function_name() { return false; } August 17, 2016 at 8:36 am #218888 Andrew Gotcha. This still seems to leave a white bar at the top of the page though. Is there something else that needs to be hidden? My guess (and I am just guessing 🙂 ) is that I hid the title, but the title area is the white area that is still visible? August 17, 2016 at 8:53 am #218902 TomLead Developer Lead Developer That filter should hide everything title related, HTML included. Can you link me to a page where the white bar is showing? August 17, 2016 at 9:01 am #218913 Andrew Sure thing: http://demo2.creativeministrydesign.com/plan-your-visit/ August 17, 2016 at 9:10 am #218918 TomLead Developer Lead Developer Ah, the content area has some top margin: .entry-content, .entry-summary, .page-content { margin-top: 0; } Author Posts Viewing 8 posts - 1 through 8 (of 8 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In