By Andrea Suriani on Friday, 25 August 2017
Posted in General Issues
Replies 3
Likes 0
Views 320
Votes 0
Hello,
i need to insert in every article blog the code {module chiusura_blog} at the end of the text.

Witch file i need to override?

Thanks in advance.

A.
Hi there,

You can achieved this by add this block http://take.ms/ZFRR6w if you use (built-in easyblog composer) and saved it as one of your post template, as when you created a new one, you are no need to re-add them again, as you just use that post template only.

If you use, WYSIWYG editor, you can use this button http://take.ms/yH8VX to add those module.

Please advice.
·
Friday, 25 August 2017 21:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi,
i know how to insert a module in a blog...

What i meant it was how to put EVER that code in a blog. Witch file i have to modify?
·
Monday, 28 August 2017 22:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Andrea,

Joomla's content module plugin doesn't work this way. It will only take what was stored in the database but it doesn't process these sort of tags.

You can however, easily place any modules in the position of "easyblog-after-content" as this is a module position that is rendered by EasyBlog.

Should you require a custom position, all you need to do is to edit the file /components/com_easyblog/blogs/entry/default.php and add the following codes,

[gist]
<?php echo $this->renderModule('module-position'); ?>
[/gist]

Replace module-position with your desired position.
·
Monday, 28 August 2017 22:16
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post