Hi Daniel,
changing the plugin-order doesnt effect on my template which is based on protostar. Here, the call for the pagination element
echo $this->item->pagination;
must be placed under the call for the afterDisplayContent
<?php echo $this->item->event->afterDisplayContent; ?>
manually in default.php for the article template that you have mentioned. After replacing these positions it worked as expected.
Regards
David
I changed
</p>
<?php endif; ?>
<?php endif; ?>
<?php
if (!empty($this->item->pagination) && $this->item->pagination && $this->item->paginationposition && $this->item->paginationrelative) :
echo $this->item->pagination;
?>
<?php endif; ?>
<?php echo $this->item->event->afterDisplayContent; ?> </div>
into ...
</p>
<?php endif; ?>
<?php endif; ?>
<?php echo $this->item->event->afterDisplayContent; ?>
<?php
if (!empty($this->item->pagination) && $this->item->pagination && $this->item->paginationposition && $this->item->paginationrelative) :
echo $this->item->pagination;
?>
<?php endif; ?>
</div>