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.
Hi,
Just add this on your custom.css or Quick CSS
.blog-categories.minor-meta {
display: none;
}
Regards,
Ismael
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.
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
wow…fast answer. Thank you very much Mr. Ismael. i will try it.