<?php echo $this->layout()->content; ?>
The code above results in $this->layout()->content
being shown in every place in layout file. But i need granularity to show the result of some actions in another place (E.g. in a right column or left column).
This is layout file:
<div class="center_col"><?php echo $this->layout()->content; ?></div>
<div class="right_col">?????</div>
How i can show result of some actions in the provided (above) .right_col
?