app1cker Hi
To hide/remove the Share icons, you can use this custom css:
.com-content-article .share-social {
display: none;
}
In case that you want to remove in code, just open PHP files in this path: /templates/ja_findus/html/com_content/article/
and remove this snippet of code:
<div class="share-social">
<div class="social-inner">
<span class="label"><i class="fas fa-share-alt"></i><?php echo Text::_('TPL_SHARE');?></span>
<div class="addthis_inline_share_toolbox"></div>
</div>
</div>