Home Forums WordPress Themes – Premium Preference How to remove Author info and tags below the post

Viewing 15 posts - 1 through 15 (of 16 total)
  • Author
    Posts
  • #14358
    ttm
    Participant

    Dear,
    Please let me know how to remove (not to show) author info in the posts of Luminescence [Date: December 4, 2012 Author:xyz] and how to remove (not to show) tags in the posts.
    Best

    #18650
    ttm
    Participant

    Very sorry. I should have posted this in the category of Celestial Reloaded. Please move this to that category if possible. Best

    #18653
    Sushil Adhikari
    Moderator

    Are you just wanting to hide the date and author only?

    #18654
    ttm
    Participant

    Yes exactly. We dont want to make the author, date and the tags (since we use OpenCalais’s Tagaroo, it shows more than 100 tags sometimes in a big article) visible to the readers. Best

    #18655
    Sushil Adhikari
    Moderator

    You will have to do some custom css (preferably in a child theme or if you are using a plugin for editing css…so you won’t lose your modifications with theme updates. But to do this, create the following custom css:

    .entry-date,
    .entry-author {
    display:none;
    }
    #18656
    ttm
    Participant

    Thank you. This worked magically. 🙂 But the tags are visible after the post. Please tell me how to remove them. Best

    #18657
    Sushil Adhikari
    Moderator

    If you want that removed as well, then with that custom css I gave you, add the entry footer meta to it as well:

    .entry-footer-meta,
    .entry-date,
    .entry-author {
    display:none;
    }
    #18658
    ttm
    Participant

    Thank you so much. This worked smoothly too. Best

    #19743
    ttm
    Participant

    Dear,
    After some updates on the theme perhaps the CSS codes you gave are not working. I want to remove/hide the “Posted in”, “Tagged:” “:Last modified” and “Post Navigation” parts. Please help.

    #19744
    Sushil Adhikari
    Moderator

    That should work and just tried this in my local test site. Perhaps try it this way:

    .entry-footer-meta,
    .nav-single {
       display: none;
    }
    #19745
    ttm
    Participant

    Thanks. But it’s not working 🙁

    #19746
    Sushil Adhikari
    Moderator

    Please provide a link to your site.

    #19748
    ttm
    Participant

    Thanks. Here it goes: http://rupkatha.com/editorial_v5_n3/

    #19750
    Sushil Adhikari
    Moderator

    OK, now I’m confused because this forum topic started off with Luminescence, then you meant to do it for Celestial Reloaded, now Preference?

    So which theme should this whole topic be related to, because I need to move this topic to the appropriate forum category for the theme which looks like is for Preference.

    For Preference your CSS would be:

    .entry-footer,
    .nav-single {
    display:none;
    }
    #19751
    ttm
    Participant

    Ah! Really sorry making the confusion.

Viewing 15 posts - 1 through 15 (of 16 total)
  • You must be logged in to reply to this topic.