Hello,
In the BLOG layout both module positions 'message' and 'sidebar-2' are defined for the desktop display
However: <jdoc:include type="message" /> is not inserted in the template and this gives an errror for system messages.
I have corrected this in /templates/purity_iii/tpls/blocks/mainbody/one-side-right.php by commenting out: 2 lines:
<?php // if($this->hasMessage()) : ?>
<jdoc:include type="message" />
<?php // endif ?>
This is also done by you in no-sidebar.php
I tried to find why $this->hasMessage() is not true?
In /plugins/system/t3/includes/core/template.php and templatelayout.php I discovered to different codes for function hasMessage().
In Templatelayout.php always a '1' is returned. This is okay.
In Template.php a value depending on the system message queue is returned. This value could initially be empty and thus no <jdoc:include type="message" /> is inserted. This is wrong.
Do you have a solution for that?
I used the most recent purity (2.0.1) and T3-plugin (3.0.7).
Regards,
Peter