kimmdesign 0 Report post Posted April 13, 2012 How do I hide the page title on one page only, when I have checked the box for "automatically show page titles"? Share this post Link to post Share on other sites
Simon 248 Report post Posted April 13, 2012 You will have to use a wordpress 'filter'. something like: http://paste.pagelines.com/2o Share this post Link to post Share on other sites
beardedavenger 158 Report post Posted April 14, 2012 There's also 2 more ways of doing this. 1. If you don't have a lot of pages, turn the titles off by default. Then, on each page put My Page Title to bring in a page title. 2. Each page in Wordpress will produce a specific CSS class like .post-35, or .post-245. They are completely random and generated on the fly. You can then use this CSS class to make changes on a per page basis. In your case, to hide titles per page. Actually Wordpress operates like this with anything; pages, categories, taxonomies, author, etc. Really powerful. So, without having a URL I can't tell you which class to use, but if you view your source code, at the top within you'll see it. For example: If you visit the "Tour" page at http://pagelines.com/tour, and view the source code of the site, you'll see that the page has a css class of .page-id-3845 http://screencast.com/t/RnzmKiLw You can then use something like this to remove that pages title (if it had one). .page-id-3845 h2 {display:none;} That CSS snip above you would paste in your Custom CSS box located in PageLines===>Custom Code. Let us know if that's any easier for you. Nick Something big is coming for DMS + photographers. http://fotostheme.com Nick Haskins & CO - New home for all of my PageLines Store products! http://nickhaskins.co Better DMS - News, Tutorials, and Tips http://betterdms.com Share this post Link to post Share on other sites
Rob 547 Report post Posted April 14, 2012 Did Nick's solution work for you? Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites