How to remove date from posts.

How to remove date from posts.

In order to remove date from blog posts and posts block, Please enter below css in wp-admin/appearance/customise/additionalCSS box.


On blog page.

To remove full block that displays date/author/categories.

.blog_area .blog_inner .blog_lift_sidebar .blog_items .breadcrumb_date {
display: none;
}

To remove only date

.blog_area .blog_inner .blog_lift_sidebar .blog_items .breadcrumb_date h6 {
display: none;
}

On single post page.
If you want to remove full block showing date and author info.

.breadcrumb_date h6{ display: none;}

If you want to remove only date.

.breadcrumb_date h6{ display: none;}

Remove date from other areas.

.recent_inner h6,
.line_news h4{ display: none;}

    • Related Articles

    • Shortcode templatation_posts details

      At Templatation.com, in few of our themes we use [templatation_posts] Shortcode. In this article, I will list parameters and other info for this shortcode. Available parameters for this Shortcode are below (with their default values): 'template' => ...
    • Remove overlay from Car single page

      In Carena theme, Car single page slider has overlay color on cars. If you want to remove it. Please enter below css in wp-admin/appearance/customise/additionalCSS box. .sp-image-container:after { background-color: transparent; }
    • How to remove or change Why Choose us from Sidebar

      Here are the instructions to remove the 'Why choose us' section from the right hand panel on all of our rooms pages. Please do as instructed in below image.
    • How to change or remove the white container of logo.

      In Cakecious theme, you might want to remove/modify the white Background of logo, as seen below. To change white circle, please put below css in Appearance/Customise/Additional css and use different image URL full absolute URL will be better. ...
    • How to remove overlay color from Hero section.

      In fitzeous theme, the Hero section has color overlay in order to display the white title clearly. But if you want to remove it, Please enter below css in wp-admin/appearance/customise/additionalCSS box. .vc_row.banner_area:after, .banner_area:after ...