Hiding the date of the page blog

Posted in: Newspaper
Post count: 10

Good evening,

Can we delete the date of a blog block (example : block type 5) on one page?

Indeed, I want to keep the date on a blog page and remove another blog page.

Thank you for your help.

Post count: 22421

Hi,

In our theme the date can be removed from 2 separate spots. It can be either removed from all blog posts at once like so: http://screencast.com/t/ZJbCyI3Bu or removed from blocks on pages and category tags: http://screencast.com/t/8J9lvn75UG but there is no option to remove the date for specific posts or pages. it can be done with a bit of css though. You can target the date for a specific block on specific pages but this is done through the page id. Each page has a unique page id. you can use it in this code:

.page-id-90 .td_block_5 .td-post-author-name span, .page-id-90 .td_block_5 .td-post-date{
display:none!important;
}

Change the page id with the one from your page so the code can apply to your specific page
You cann add the code in the theme panel->custom css box

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.