Thanks mehrdads, I encountered the same issue and tried to figure out how to turn off the empty column left by an inactive Share bar. I’m running Hueman v3.1.0 + Hueman Addons 1.0.1.
I installed the Hueman Addon plugin only because of the shortcodes, the Share bar is of no interest to me.
Putting this snippet in my child theme:
.entry.share {
padding-right: 0;
display: none;
}
… actually hid all the content of my posts, but it works fine when leaving out ‘display: none’
So, putting this in my child theme made the empty space at the right side of my posts disappear:
.entry.share {
padding-right: 0;
}
I believe it goes without saying that the space for the Share bar better should disappear automatically whenever the Share feature is not activated.