Hi
Installed NEW TEST SITE:
Joomla! 3.9.2
ja_university_t3 (1.1.8 / Dec 13, 2018 )
Content - JA Bookmark (Plugin / 2.6.3 / Dec 29, 2017)
AddThis show only in <SECTION>
TAG.
http://2019-new-1.krok.edu.ua/ua/pro-krok/pidrozdili/strukturni/prijmalna-komisiya
But i want show it in <ASIDE>
TAG (one line with print and email buttons).
I was try to change /templates/ja_university_t3/html/com_content/article/default.php
BEFORE
<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<!-- Aside -->
<?php if ($topInfo || $icons) : ?>
<aside class="article-aside clearfix">
<?php if ($topInfo): ?>
<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
<?php endif; ?>
<?php if ($icons): ?>
<?php echo JLayoutHelper::render('joomla.content.icons', array('item' => $this->item, 'params' => $params, 'print' => $this->print)); ?>
<?php endif; ?>
</aside>
<?php endif; ?>
<!-- //Aside -->
AFTER
<!-- Aside -->
<?php if ($topInfo || $icons) : ?>
<aside class="article-aside clearfix">
<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
<?php echo $this->item->event->afterDisplayTitle; ?>
<?php if ($topInfo): ?>
<?php echo JLayoutHelper::render('joomla.content.info_block.block', array('item' => $this->item, 'params' => $params, 'position' => 'above')); ?>
<?php endif; ?>
<?php if ($icons): ?>
<?php echo JLayoutHelper::render('joomla.content.icons', array('item' => $this->item, 'params' => $params, 'print' => $this->print)); ?>
<?php endif; ?>
</aside>
<?php endif; ?>
<!-- //Aside -->
but not show AddThis in <ASIDE>
TAG. AddThis show only in <SECTION>
TAG.
Now stay not changed PHP files on test site.
How i can do it?
What can you advise me?
WBR,
Igor