You can hide it with the following CSS rule:
.item-page .short-info .share-social {display: none;}
In case that you want to remove it in PHP code, you can edit the override layout file in:
/templates/ja_findus/html/com_content/article/
.
Depending on the article layout you are using, you will edit the corresponding PHP file: default.php
, listing-1.php
, and so on.
Comment or remove this code:
<div class="col-12 col-md-6">
<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>
</div>