Jump to content
Sign in to follow this  
kimmdesign

How do I hide the page title on one page only?

Recommended Posts

kimmdesign

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
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
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
Did Nick's solution work for you?

Former PageLines Moderator, Food Expert and Raconteur

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×