By HAZEL on Thursday, 03 November 2016
Posted in Technical Issues
Replies 3
Likes 0
Views 350
Votes 0
Hello,
After update 1.14.12 to 2.0.2

impossible to parameterize sharing social networks. Options in the parameter no longer exists

Thanks you for your assistance

Regards

Frank
Yes, this is correct as we have removed this settings. The rationale behind removing this settings is because most of the time, people do not disable them. If you really need to have some of these buttons removed, you could override the theme file in /components/com_easysocial/themes/wireframe/sharing/dialog.php

Example to remove facebook,

[gist]
<?php foreach ($vendors as $vendor) { ?>
<?php if ($vendor->name != 'facebook') { ?>
<li>
<?php echo $vendor->getHTML(); ?>
</li>
<?php } ?>
<?php } ?>
[/gist]
·
Thursday, 03 November 2016 16:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,
ok, it will be more complicated, but it is achievable

Regards

Frank
·
Thursday, 03 November 2016 16:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Frank,

Yes, for people like yourself who needs very specific tweaks, this is the best choice and this is also why we added a template editor at the back end.

Because generally, people do not disable any of these buttons
·
Thursday, 03 November 2016 16:47
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post