Vijay Kumar
asked 11 years ago

I want to disable the social sharing options in articles on the left side. I want the options at bottom of the post or permanently disabled.

5 Answers
DominicStaff
answered 11 years ago

Currently, the social Sharing in articles does not yet support the options at bottom in the post.

you only can remove it in the posts. To resolve this problem you can log in to Dashboard > Theme > Customize > General Settings > Add the following code in the “Header Script”


<style>
.single-post .social-action {
display: none;
}
</style>

Regards,
Dominic

Vijay Kumar
answered 11 years ago

I want to show only tags in the bottom of every post.

DominicStaff
answered 11 years ago

To resolve this problem you can open the functions.php file and replace line 420 -> 448
with new code :
URL: http://snippi.com/s/c19ulvg
And then add the following code to the General Setting > Header Script.

<style>
.tag-action {
clear: both;
margin-left: 176px;
padding-bottom: 11px;
}

@media (max-width: 979px) {
.tag-action {
margin-left: 0px;
}
</style>

Regards,
Dominic

Vijay Kumar
answered 11 years ago

When i apply the above process, the left sidebar is blank. There is a blank space in the left sidebar where is the social sharing and tags. I want to remove the space also.

DominicStaff
answered 11 years ago

To resolve your issue, you can add the following code to the “Header Script”


<style>
.single .site-content > .hentry .entry-content {
    max-width: 100%;
}
</style>

Regards,
Dominic

Vijay Kumar
answered 11 years ago

The problem for blank space is not resolved with the given script.

DominicStaff
answered 11 years ago

Please add the following code to the “Header Script”

<style>
.single .site-content > .hentry .entry-content {
    max-width: 100% !important;
}

.entry-action {
    display: none;
}
</style>

Or you can send me username & password your site. I will help you resolve this issue.

Vijay Kumar
answered 11 years ago

The problem is solved but the tags at bottom is still starting from the blank space. The tags are not showing in the most left side, these are starting from middle.

DominicStaff
answered 11 years ago

Please send me your site then I will help you resolve this issue.

Powered by DW Question & Answer Pro