hi how can i remove all comments option from abundance theme?
here's a page link
http://www.bagshoecleaningsanctuary.com/2012/12/22/christmas-promotion/
thxs
hi how can i remove all comments option from abundance theme?
here's a page link
http://www.bagshoecleaningsanctuary.com/2012/12/22/christmas-promotion/
thxs
Hi!
Open up single.php and delete following code:
//wordpress function that loads the comments template "comments.php"
comments_template( '/includes/comments.php');
Regards,
Peter
I just tried deleting that section of code from the Single Post and it still shows comments on the right-hand side. Is there something else that needs to be done? Here's the post that I did this to: http://www.lotussf.com/alixalvarez/
Thanks in advance!
hi dude, thxs it works :)
.last thing how can i also remove the small text since comment is hidden
"0 Comments
in Promotions
by bagshoecleaningsanctuary"
at the left hand col
Hi papachew and AgentLotus,
Try to add this code on your Quick CSS (located inside Abundance > Theme Options > Styling) or custom.css (located inside wp-content/themes/abundance/css):
.post-meta-infos .comment-container.minor-meta, .post-meta-infos .blog-categories.minor-meta, .post-meta-infos .blog-author.minor-meta {
display: none;
}
or
.post-meta-infos .comment-container.minor-meta, .post-meta-infos .blog-categories.minor-meta, .post-meta-infos .blog-author.minor-meta {
display: none !important;
}
Hope this helps. :)
Regards,
Ismael
thxs Ismael! appreciate it!
Thanks, that worked but is it also possible to remove the date the post was created?
Hi,
To remove the date just add this
.date-container.minor-meta {
display: none;
}
Regards,
Ismael
Perfect, thanks! One more question -- is it possible to remove the breadcrumbs from all posts?
Hi AgentLotus,
Try to add this code:
.single-post .breadcrumbs {
display: none;
}
This will remove breadcrumbs to all single posts.
Hope this helps. :)
Regards,
Ismael
You must log in to post.