Removing the term 'Project Type'
-
Hi There
On my portfolios, I’m trying to remove the term Project Types, but I don’t know how to and got a little bit confused.
Is there someone who can help me resolve this situation?
Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there,
That heading is added by your theme. The only way to hide it is by using custom CSS, and that’s only possible with the Premium and Business plans.
-
-
Once you have Premium, you can get CSS help from the experts in our CSS forums, here:
https://en.forums.wordpress.com/forums/css-customization
But for a simple hiding of a title on a page we can also help you via live chat, or I can help with that via the regular forum, where you are now :)
-
-
Click on My Sites, then click the Customize button next to Themes. Then click the tab that says CSS.
Enter this code on a new line:
.tax-jetpack-portfolio-type.term-pup-gigs h1.page-title { font-size: 0; } .tax-jetpack-portfolio-type.term-pup-gigs h1.page-title::after { content: 'Pup Gigs'; font-size: 16.8px; }This is a bit hacky, but the only way that’s possible due to the way your theme is written. You’ll also need to repeat this code for each project type page where you want to hide the title. For example, for your Family Outings type you’ll edit the above to be:
.tax-jetpack-portfolio-type.term-family-outings h1.page-title { font-size: 0; } .tax-jetpack-portfolio-type.term-family-outings h1.page-title::after { content: 'Family Outings'; font-size: 16.8px; }In the “.term-pup-gigs” part, look at the URL of each project type to see what words should be used. In the Content line, put whatever you want to show as the title instead.
You can also play with the font-size value to make the heading bigger or smaller.
-
-
- The topic ‘Removing the term 'Project Type'’ is closed to new replies.