Aalok Posted November 18, 2019 Share Posted November 18, 2019 I have two blog pages (one for regular posts and one for work/portfolio. How do I remove metadata from appearing on the work/portofilo blog list and post, but not from the regular blog list and page? I found this thread but I'm not sure how to choose a particular blog page when you have multiple: Link to comment
lu.diehl Posted November 19, 2019 Share Posted November 19, 2019 You add the code to the blog page you want to remove the metadata, and not to the site wide custom CSS. To do so, go to your portfolio page settings, choose Advanced > Page Header Code Injection and add the code between <style> </style> If you want further help, please share a link to your website 🙂 Link to comment
Guest Posted December 2, 2019 Share Posted December 2, 2019 What code would you need to add to the style tag? Link to comment
tuanphan Posted December 2, 2019 Share Posted December 2, 2019 17 minutes ago, Jhjowen said: What code would you need to add to the style tag? Add to Home > Design > Custom CSS /* Remove Date, Tags, Categories */ /* Home Page */ .homepage .entry-info { display: none; } /* Blog Page */ .view-list.collection-type-blog .entry-info { display: none; } /* Blog Posts */ .view-item.collection-type-blog .entry-info { display: none; } or wrap in <style> code paste here </style> and insert to Header Code Injection Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Angella Posted June 10, 2021 Share Posted June 10, 2021 Hi @tuanphan I have a similar issue which the instructions above don't resolve. I have a blog where I want to display author, tags and categories (not date) and a podcast where I just want to display categories and tags (not author or date). I have tried both injecting the code into the main header and specifying which categories to change display on as well as the code above in the Page Header Code Injection. Can you please help? 🙂 Link to comment
tuanphan Posted June 11, 2021 Share Posted June 11, 2021 On 6/10/2021 at 11:57 AM, Angella said: Hi @tuanphan I have a similar issue which the instructions above don't resolve. I have a blog where I want to display author, tags and categories (not date) and a podcast where I just want to display categories and tags (not author or date). I have tried both injecting the code into the main header and specifying which categories to change display on as well as the code above in the Page Header Code Injection. Can you please help? 🙂 Can you share link to both blog pages? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.