Hi @hvboek,
If you take a look at the layout of ‘features-intro’ and ‘blog-2’, you will see that the ‘features-intro’ layout doesn’t contain the ‘mainbody’ block.
Hence, you can add the ‘mainbody’ block into ‘features-intro’ layout to show component block content. To do this, you go to file: ROOT/templates/ja_sugite (your default template)/tpls/features-intro.php and add this line of code to desired position:
<?php $this->loadBlock('mainbody') ?>
For example:
<div class="t3-wrapper features-intro features-intro-1">
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('slideshow') ?>
<?php $this->loadBlock('features-intro') ?>
<?php $this->loadBlock('mainbody') ?>
<?php $this->loadBlock('spotlight-1') ?>
.............................................................