Blog page….
Is it possible to remove “In Category, By User”?
Im building a single user (a corporate) News article page. Trying to clear the blog feel.
Hi,
Add this on your custom.css or Quick CSS
.blog-categories.minor-meta, .blog-author.minor-meta {
display: none;
}
To remove the separator, open includes > loop-index.php and find this code
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
echo '</span><span class="text-sep">/</span>';
Replace that with
echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
echo $cats;
Again, find this code
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 this
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>";
Regards,
Ismael
Thanks!