• Renai100

    (@renai100)


    Hi, I am using the Fashionista Theme for my wordpress posts.

    How do I remove the date that is below the title but above the contents of the posts?
    Also, how can I remove the category name, tags, author name and “Previous Article” (with a navigation arrow)at the bottom of each post?

    Any help is much appreciated. Thanks much!

Viewing 15 replies - 1 through 15 (of 28 total)
  • Up!

    I need to know how to hide the categories (not only on the home page) and previous article underneath a blog post.

    Hi Renai100

    Do you want to remove the above from the single post ?

    Thanks

    Hi Kimberley,

    However same the topic seems, it is really not as it changes with site and contents. So I will advice you to create new topics for further support.

    You can do it by adding the below code in your theme’s style.css file.

    I would advice you to do the changes using a Child Theme or by using a My custom css plugin to keep the changes preserved even after the update

    I assume you want to remove the tag and category section from every where, which you can do by adding below

    .entry-footer {
        display: none;
    }

    To remove the next – prev article section from single post

    .site-content .post-navigation {
        display: none;
    }

    Hope it helps!!

    Thanks

    I’ve been trying to figure out the “date” removal portion of the OP’s question, but I don’t see it answered here. I don’t want to remove post navigation, or the tags/catergories–just the date itself (my content is evergreen content for the most part). Thanks in advance for any help you can offer!

    Hi microscopegenius,

    Please create a new thread regarding your issue.

    Thanks

    The OP asked this question in the first post and you didn’t answer it in your answer, but okay.

    Created my own thread and it was removed as a duplicate.

    So, rather than directing me in forum etiquette that I’m already quite familiar with, can you assist?

    Thanks.

    Hello!

    Just wondering if you ever found out how to remove the date?
    I’m also wanting to remove the date and also the leave a comment bit just underneath it. I’ve had a look for this topic elsewhere and can’t find it anywhere.

    Would love to know!

    Cheers!

    Thread Starter Renai100

    (@renai100)

    Hi, sorry I hadn’t been checking on this for a while…I managed to remove the date, category name, tags and author name on my own. But I still couldn’t remove the “Previous Article” navigation.

    For those who are interested, I did it by inserting “display:none;” under .entry-meta after the word “uppercase;” and insert the same after the word “text-decoration: none;” for the date removal in style.css.

    For removing the category name, tags and author name, I did it by inserting “display:none;” under .entry-footer after the words “border-width: 1px 0 3px;” also in style.css.

    Sorry if this isn’t the best of solutions as I do not exactly have CMS knowledge, just doing trial and error all these while.

    Hi Maruti Mohanty, there isn’t any .site-content .post-navigation in my Single Post. Any other suggestions? Thanks in advance!

    Hi

    @microscopegenius There is nothing to get irrritated about, now you can see why I have been asking to create new threads, With everyone putting on their own question here, soon this thread would become nothing more than a mess which won’t help anyone further.

    But if you say you have tried creating a new thread, I would thank you for that.

    Now to remove only the date you can add the below code in your theme’s style.css. I would advice to use child theme so that you dont loose these changes or any other changes made to the theme upon updating.

    .entry-date {
        display: none;
    }

    Hope it helps

    Thanks

    Hi thriftish.

    To remove both the date and comment, you can add the below code in your theme’s style.css. I would advice to use child theme.

    .entry-meta {
        display: none;
    }

    Thanks

    Hi Renai100,

    Can you share a link to your site, so that I can have a look?
    Please share a screenshot with the area marked for better understanding

    Thanks

    Thread Starter Renai100

    (@renai100)

    Hi Maruti Mohanty,

    I followed your instruction

    .site-content .post-navigation {display:none;
    margin-top: -25px;

    `

    but not in single post but in style.css and it worked in removing the prev-next post navigation! Thanks for the lead!

    You are welcome πŸ™‚

    Hi.

    I need some guidance about removing the date/author from posts. I’ve read all of this but have no idea how to access the php and like files you’re talking about. I know – I sound like a moron. But I’m 90 and this is over my head. Is there any way to walk me through it? The theme I use is twenty-ten.

    thanks!!!

Viewing 15 replies - 1 through 15 (of 28 total)
  • The topic ‘How to Remove Date above posts & Category, Tags, Author, Previous Article below’ is closed to new replies.