Tagged: ,

Viewing 20 posts - 1 through 20 (of 32 total)
  • Author
    Posts
  • #1043
    ali66reza
    Member

    Looking for a way to Remove Date and Author Name

    #1050
    jadewbj
    Member

    I would like to know this also.

    #1051
    jadewbj
    Member

    In addition I would like to know how to remove the “Categories:” at the bottom of the posts.

    #1052
    jadewbj
    Member

    Not sure if this is the “right way” to do it but this worked for me.
    Go to the theme editor and edit:
    simplecatch_functions.php
    Search for this code:
    ul class=”post-by”

    Then comment out before that UL and end at the /ul

    #1062
    Sakin
    Keymaster

    Hello, to remove the data you need to build child theme and do the customization.

    But you also have a simple process of hiding it through css. You can add the following css in your “Custom CSS” box in Theme Options under Appearance Tab in your WordPress Dashboard:

    /*To Remove the Categories at the bottom of the posts.*/
    .single .tags {
    display: none;
    }
    /* to Remove Date and Author Name */
    #main #content ul.post-by {
    display: none;
    }

    Regards,
    Sakin

    #1101
    ali66reza
    Member

    what do you mean by that, i dont know how?!!
    is any easy way to do it, any code to copy?

    #1129
    Sakin
    Keymaster

    Yes you just need to copy the css as above and paste in the the “Custom CSS” box in Theme Options under Appearance Tab in your WordPress Dashboard.

    #1208
    Ladyhawk
    Member

    Sakin,
    I had this same question and copied the code you posted above into the custom CSS box and there was no change in the post author, date or category. Is there something that I missed?

    #1216
    GunHound
    Member

    All,

    I tried Sakin’s code, and it did not work for me either. Here is how I resolved it:

    I browsed to my page just as a user would and went to the Author info on a post. I right clicked the info to “Inspect element” using the Google Chrome browser. Firefox extension, “FireBug” enables the same function.

    There I could see that the parent “class” that contains all of the info is called “entry-meta”. That makes sense because it contains the metadata of the post/entry.

    Using Sakin’s instruction’s for adding Custom CSS to the theme, I inserted the following code:

    .entry-meta {
    display:none;
    }

    #1218
    Sakin
    Keymaster

    @GunHoung: I have talking about removing it in Simple Catch Theme: http://catchthemes.com/demo/simplecatch/

    If you inspect with the firebug, you will see class “post-by”

    But if you are talking about Simple Catch Pro Theme http://catchthemes.com/demo/simplecatch-pro/ then yes you are right.

    But this forum title if from Simple Catch Theme.

    I am bit confused in which theme you are talking about.

    Regards,
    Sakin

    #1276
    ikampyla
    Member

    Hi all!!
    Is there a way to keep date and remove author and comments?

    By admin | 16 October, 2012 | No Comments

    #1281
    Sakin
    Keymaster

    @ikampyla: You can add following css in the “Custom CSS” box in Theme Options under Appearance Tab in your WordPress Dashboard.

    #main #content ul.post-by li.no-padding-left,
    #main #content ul.post-by li.last, {
    display: none;
    }

    #2173
    dimantonak
    Member

    I have a little more complicated problem… I want to hide only the comments section.  I deleted the line 30 from the content.php (<?php comments_popup_link( __( ‘No Comments’, ‘simplecatch’ ), __( ‘1 Comment’, ‘simplecatch’ ), __( ‘% Comments’, ‘simplecatch’ ) ); ?>). So in that case the comments section is not presented at the category list but it continues to be present at the category item (post). I cannot find any other popup_link except from the image.php.

     

    Please advice

    Ragards,

    #6183
    Aneesh
    Member

    Hai Sakin,

    I want to remove date, Category & Author name from my post.

    I am using catch everest theme. my website is http://daffodilsgroup.net/lifespace/?p=30

    Please help.

    #6208
    Sakin
    Keymaster

    @Aneesh: Just add the following CSS in “Custom CSS” box in Theme Options panel.
    .single .entry-meta { display: none; }

    #6209
    Sakin
    Keymaster

    @dimantonak: Don’t delete the code. You can just hide with the help of CSS. Send me your site URL?

    #6218
    Aneesh
    Member

    Thank you sakin. It is working.

    One more doubt. Can I change the color of menu bar and foot bar.

    If yes can you help me to do so. my website is  http://daffodilsgroup.net/lifespace

    I want to change it from dark grey to blue.

    #6219
    Aneesh
    Member

    Thank you sakin. It is working.

    One more doubt. Can I change the color of menu bar and foot bar.

    If yes can you help me to do so. my website is  http://daffodilsgroup.net/lifespace

    I want to change it from dark grey to blue.

    I am not sure whether I posted the question in the right topic.

    Please excuse.

    #6277
    Sakin
    Keymaster

    @Aneesh: Just add the following CSS in “Custom CSS” box in Theme Options panel. Change the color code as per your need.

    #header-menu, #header-menu ul.menu ul a { background-color: #0000CD; }
    #header-menu .menu .current-menu-item > a,
    #header-menu .menu .current-menu-ancestor > a,
    #header-menu .menu .current_page_item > a,
    #header-menu .menu .current_page_ancestor > a,
    #colophon .menu .current-menu-item a {
    background-color: #191970;
    }
    #header-menu ul.menu li:hover > a,
    #header-menu ul.menu a:focus,
    #colophon #access-footer ul.menu a:hover,
    #colophon #access-footer ul.menu a:focus {
    background-color: #191970;
    }

    #6295
    Aneesh
    Member

    Thank you sakin.

    Now menu colour is changed.

    I would also like to change the the color of footer bar.

    Can you help me. my website is  http://daffodilsgroup.net/lifespace

Viewing 20 posts - 1 through 20 (of 32 total)
  • The topic ‘How to Remove Date and Author Name’ is closed to new replies.