Hi,
I'm using the leading article layout of joomla's standard category blog layout. I'm using an override for my selfmade template making the leading article show the whole article text even if there's a page break/read more-break in the article.
I need to be able to move the add comment link, I've found some people saying that I should move the afterDisplayContent in the override, but this is at the last line but the Add comment link appears in the middle of the text anyway, in other words where the read more link should have been if the override didn't remove it.
So the code looks like this in my override:
<?php echo $this->item->introtext; ?>
<?php echo $this->item->fulltext; ?>
And the output gets like this:
<?php echo $this->item->introtext; ?>
[Add comment link]
<?php echo $this->item->fulltext; ?>
But I want the Link to be:
<?php echo $this->item->introtext; ?>
<?php echo $this->item->fulltext; ?>
[Add comment link]
I hope you can help me with this!
Thanks!