Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1359252
    Dedner
    Participant

    Hi,
    I´m using the Ethos-Theme and want to remove date and author from all posts.
    I fond this css-Code in the forum:

    .x-post-slider .featured-view,
    .x-post-slider .featured-meta {
    display:none;
    }
    .blog .x-slide .featured-meta {
    display: none;
    }

    it works fine, but it does not remove the date from posts with “Index Featured Post Layout”. The date is still showing on these posts, as you can see here:

    Home


    How can I remove the date, category and the other tings from these posts als well?

    Thanks for help!

    #1359254
    Rupok
    Member

    Hi there,

    Thanks for writing in! Let’s add this as well :

    .blog .featured-meta {
        display: none;
    }

    Cheers!

    #1359259
    Dedner
    Participant

    Hi and thanks for the quick answer!
    It works, thanks!!
    Can I also get rid of the “View Post”?
    That would make it perfekt!

    #1359264
    Rupok
    Member

    Hi there,

    Thanks for writing back. Sure, just add the below code :

    .blog .featured-view {
       display: none;
    }

    In case you want to remove “View Post” from other posts as well then add this as well :

    .blog a.entry-thumb .view {
       display: none;
    }

    Cheers!

    #1359300
    Dedner
    Participant

    Hi there,
    thank you, worked perfect!
    Your Theme and Service are really great, thanks!

    #1359312
    Paul R
    Moderator

    You’re welcome and thank you for your kind words! 🙂

    #1361630
    Dedner
    Participant

    Sorry, but I just found, that it is not working on all pages.
    Removing the date works fine on the main page:

    Home


    But in a Category-List it is still showing:
    http://strebenswert.de/thema/fuehren/
    What do I have to change, to make the date dissapear on all pages?
    Thanks for help!

    #1361932
    Jade
    Moderator

    Hi there,

    Please update the code to:

    .archive .featured-view,
    .archive a.entry-thumb .view,
    .blog .featured-view,
    .blog a.entry-thumb .view {
       display: none;
    }
    

    Hope this helps.

    #1368068
    Dedner
    Participant

    Hi there,
    sorry to say, that updating the code did not change anything. The date is still showing up on sub-pages.
    here is the original code again. Perhaps I inserted the new code wrong, but I tried every possible update:

    x-post-slider .featured-view,
    .x-post-slider .featured-meta {
    display:none;
    }
    .blog .x-slide .featured-meta {
    display: none;
    }
    .blog .featured-meta {
    display: none;
    }
    .blog .featured-view {
    display: none;
    }
    .blog a.entry-thumb .view {
    display: none;
    }

    What do I have to insert, to remove the date on pages like this one:
    http://strebenswert.de/wp-admin/customize.php?return=%2Fwp-admin%2F
    Thanks for help.

    #1368381
    Rue Nel
    Moderator

    Hello There,

    Thanks for updating in! The code only removes the dates in the blog index. Please have it updated and make use of this code so that the dates will not be displayed in any of the archive pages;

    .x-post-slider .featured-view,
    .x-post-slider .featured-meta {
         display:none;
    }
    
    .blog .x-slide .featured-meta,
    .archive .x-slide .featured-meta {
      display: none;
    }
    
    .blog .featured-meta,
    .archive .featured-meta {
        display: none;
    }
    
    .blog .featured-view,
    .archive .featured-view {
       display: none;
    }
    
    .blog a.entry-thumb .view,
    .archive a.entry-thumb .view {
       display: none;
    }

    We would loved to know if this has work for you. Thank you.

    #1372149
    Dedner
    Participant

    Thanks, that did the job for now! Dates are gone on all posts.

    One last question:
    What would I have to add, if I ever wanted to use the “Post Carousel”? Date is still showing there.
    Thanks again for helping!

    #1372475
    Jade
    Moderator

    Hi there,

    Please add this code:

    .entry-cover-date {
        display: none;
    }

    Hope this helps.

    #1374921
    Dedner
    Participant

    No, doesn’t`help. In the “Post Carousel” with Mouse-over it stills shows author, categories and date.

    #1375571
    Nabeel A
    Moderator

    Hi again,

    Please add the following code in your Customizer via Appearance > Customize > Custom > Edit Global CSS:

    .x-post-carousel-meta {
        display: none !important;
    }

    Let us know how this goes!

    #1376325
    Dedner
    Participant

    Perfect! Thank you very much for your help!

  • <script> jQuery(function($){ $("#no-reply-1359252 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>