Hi scarlaiene
Make a copy of this file /templates/ja_playschool/tpls/blocks/sections.php and name them sections1.php, sections2.php, sections3.php and so on
Then edit the file sections1 and change from
defined('_JEXEC') or die;
?>
<?php if ($this->countModules('section')) : ?>
<div id="t3-section" class="t3-section-wrap wrap">
<jdoc:include type="modules" name="<?php $this->_p('section') ?>" style="T3Section" />
</div>
<?php endif ?>
TO :
defined('_JEXEC') or die;
?>
<?php if ($this->countModules('section1')) : ?>
<div id="t3-section" class="t3-section-wrap wrap">
<jdoc:include type="modules" name="<?php $this->_p('section1') ?>" style="T3Section" />
</div>
<?php endif ?>
Apply this for each section file
defined('_JEXEC') or die;
?>
<?php if ($this->countModules('section2')) : ?>
<div id="t3-section" class="t3-section-wrap wrap">
<jdoc:include type="modules" name="<?php $this->_p('section2') ?>" style="T3Section" />
</div>
<?php endif ?>
For sections2.php and so for sections3, sections4 etc etc
Then edit this file /templates/ja_playschool/tpls/default.php and add below
<?php $this->loadBlock('sections') ?>
Your new blocks
<?php $this->loadBlock('sections1') ?>
<?php $this->loadBlock('sections2') ?>
<?php $this->loadBlock('sections3') ?>
Then edit this file /templates/ja_playschool/templateDetails.xml and add new positions
<position>debug</position>
<position>sections1</position>
<position>sections2</position>
<position>sections3</position>
Regards