Hi faistryan.,
Just create page template without title and assign to the particular pages
In the CSS you can do it for each page where you don’t want it to appear using the page id. For example, for the tv-writing page
.page-id-10 .entry-title {display:none;}
You could also use the hide title plugin
https://wordpress.org/plugins/hide-title/
Hi @kwbridge! That didn’t seem to work.
The page title still still appears (TV WRITER. BOOK WRITER…..)
Is there another CSS option?
Thanks again
.page-id-12 .entry-title ,.page-id-10 .entry-title {
display: none;
}
Try this
Still nothing! I even tried this
.page-id-12 .site-title ,.page-id-10 .site-title {
display: none;
}
Your stylesheet have not properly closed
You need to close this statement @media only screen and (max-width: 320px) {
Then try this code
What if you try adding important?
page-id-10 .entry-title {display:none !important;}
Sorry! Where does it need to be closed?
Just before this line
.page-id-12 #site-title {
to
}
.page-id-12 #site-title {
then add this code at the bottom
.page-id-12 .entry-title ,.page-id-10 .entry-title {
display: none;
}
better try to create child theme
Still doesn’t work @kwbridge!
Thanks
Noy you are wrong
Its needs to close otherwise its not working
@Dabliu Pee, Ive closed everything off at the bottom though,and removed the @media only sceen
.page-id-12 .site-title ,.page-id-10 .site-title {
display: none;
}
need change to
}.page-id-12 .site-title ,.page-id-10 .site-title {
display: none;
}
That was already closed. The } was just on the line above.
Still nothing π
Any other ideas as to what would work guys?
Thanks for all your help