Home › Forums › Theme support › Disable comments "enter an answer" and tags icons › Reply To: Disable comments "enter an answer" and tags icons
Hi,
And maybe one more question – how to disable twitter and facebook share buttons when one opens a picture in portfolio in full-size? I don’t have those social network connected with my site and don’t want those buttons being displayed.
Thats are only buttons to share it, for this you don’t have to use facebook or twitter. But if you don’t want it, you can add this css code in WP admin -> Appearance -> Theme Options -> General -> Extra CSS content:
div.pp_default .pp_social {
display:none;
visibility:hidden;
}
For the “tag” icon: you can add this css code in WP admin -> Appearance -> Theme Options -> General -> Extra CSS Content to hide it:
.icon-tag {
display:none;
}