By Philippe on Wednesday, 28 February 2018
Posted in Technical Issues
Likes 0
Views 624
Votes 0
Hello,

I was unable to find the setting to disable the Share This button from Groups / Pages / Events ...
See capture in attachment.

Thanks for your help.
Philippe
There are no settings for this. Should you want to remove it, you may create a template override and remove the DOM,

/wireframe/helpers/cover/group.php
[gist]
<?php if ($this->config->get('groups.sharing.showprivate') || (!$this->config->get('groups.sharing.showprivate') && $group->isOpen())) { ?>
<div class="btn-group">
<?php echo $this->html('group.bookmark', $group); ?>
</div>
<?php } ?>
[/gist]

/wireframe/helpers/cover/page.php
[gist]
<?php if ($this->config->get('pages.sharing.showprivate') || (!$this->config->get('pages.sharing.showprivate') && $page->isOpen())) { ?>
<div class="btn-group">
<?php echo $this->html('page.bookmark', $page); ?>
</div>
<?php } ?>
[/gist]

/wireframe/helpers/cover/event.php

[gist]
<?php if ($this->config->get('events.sharing.showprivate') || (!$this->config->get('events.sharing.showprivate') && $event->isOpen())) { ?>
<div class="btn-group">
<?php echo $this->html('event.bookmark', $event); ?>
</div>
<?php } ?>
[/gist]
·
Wednesday, 28 February 2018 01:01
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you Mark ! It works
·
Wednesday, 28 February 2018 18:52
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome. Glad to hear that your issue has been resolved now.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Wednesday, 28 February 2018 19:05
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post