Hi, I'd like to delete the 'Likes' 'Tweets' & 'categories' from underneath a blog post.
Any help appreciated thanks!
Ross
Hi, I'd like to delete the 'Likes' 'Tweets' & 'categories' from underneath a blog post.
Any help appreciated thanks!
Ross
Hi Ross,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
.post-meta-infos {
display: none;
}
Regards,
Devin
I would like to to display only the Blog Post Author and Categories.
Thank you for any help.
Regards, Kathy
Hi,
You can do this.
.tweets-count.minor-meta, .text-sep.like-count-sep, .like-count.minor-meta, .text-sep.comment-container-sep {
display: none;
}
Regards,
Ismael
Thank you. However, the Author is not displayed...But the Categories are there.
Can you help with the author.
Hi KSJ,
You'll need to enable the author to be output by the theme in that case. Open up includes>loop-index.php and search for:
/*
echo '<span class="blog-author minor-meta">'.__('by ','avia_framework');
the_author_posts_link();
echo '</span><span class="text-sep author-sep">/</span>';
echo '<span class="blog-permalink minor-meta">';
echo "<a href='".get_permalink()."'>".__('#permalink','avia_framework')."</a>";
echo '</span>';
*/
You'll need to remove the comment code to make it show up live. So change it to:
echo '<span class="blog-author minor-meta">'.__('by ','avia_framework');
the_author_posts_link();
echo '</span><span class="text-sep author-sep">/</span>';
echo '<span class="blog-permalink minor-meta">';
echo "<a href='".get_permalink()."'>".__('#permalink','avia_framework')."</a>";
echo '</span>';
Now save the file back on your server in the same place.
Regards,
DevinThanks Devin,
I will try this. I was out of town, sorry for the delay.
Regards, Kathy
Hi!
I hope it worked out?
Best regards,
Peter
Hi Kathy,
Just inform us if the problem is resolved. :)
Regards,
Ismael
You must log in to post.