Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #23744

    Hello Sir,

    Please help me ASAP to hide the category from every single post title. Please see this for details http://i.imgur.com/jM33o4L.jpg?1. I have tried using editor, but still dont get it. thank you.

    #120984

    Hi,

    Just add this on your custom.css or Quick CSS

    .blog-categories.minor-meta {
    display: none;
    }

    Regards,

    Ismael

    #120985

    thanks Mr. Ismael. it works. it looks like : date/ / author, how to make only one slash visible, => date / author

    sorry for my worst php knowledge.

    #120986

    Hello Mr. Jonisu,

    Add the css then edit loop-index.php, find this code

    if ( get_comments_number() != "0" || comments_open() ){

    echo "<span class='comment-container minor-meta'>";
    comments_popup_link( "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";
    echo "<span class='text-sep'>/</span>";
    }

    Replace it with

    if ( get_comments_number() != "0" || comments_open() ){

    echo "<span class='comment-container minor-meta'>";
    comments_popup_link( "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";

    }

    We removed

    echo "<span class='text-sep'>/</span>";

    Regards,

    Ismael

    #120987

    wow…fast answer. Thank you very much Mr. Ismael. i will try it.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Hide Category in every single post title’ is closed to new replies.