domir21 Hi
It seems that you don't set intro text vs full text for article on your site so that Joomla consider fulltext as intro text as well so it displays duplicated content.
I updated this file: root/templates/ja_artsy/html/com_content/article/default.php
and change this line:
<?php echo $this->item->text; ?>
to:
<?php echo $this->item->fulltext; ?>
and remove this code which renders that share button:
<div class="sharing-content">
<div class="txt-share"><?php echo '<span>'. JText::_('TPL_SHARE_SOCIAL').'</span>'; ?></div>
<div id="share-social" class="share-social">
<div class="addthis_inline_share_toolbox"></div>
</div>
</div>
Kindly check.