Module on mainbody

GK User
Mon Jul 20, 2015 8:37 am
Hello, I would like to place modules in the module position "mainbody" on some pages. It only works on the homepage and on other pages it is not showing. How can I make this work?
User avatar
Gold Boarder

teitbite
Mon Jul 20, 2015 9:22 am
Hi

Edit file /layout/default.php and replace

Code: Select all
               <section id="gkMainbody">
                  <?php if(($this->layout->isFrontpage() && !$this->API->modules('mainbody')) || !$this->layout->isFrontpage()) : ?>
                     <jdoc:include type="component" />
                  <?php else : ?>
                     <jdoc:include type="modules" name="mainbody" style="<?php echo $this->module_styles['mainbody']; ?>" />
                  <?php endif; ?>
               </section>


with

Code: Select all
               <section id="gkMainbody">
                  <?php if(!$this->API->modules('mainbody')) : ?>
                     <jdoc:include type="component" />
                  <?php else : ?>
                     <jdoc:include type="modules" name="mainbody" style="<?php echo $this->module_styles['mainbody']; ?>" />
                  <?php endif; ?>
               </section>

User avatar
Moderator

GK User
Mon Jul 20, 2015 9:39 am
Thanks, that's it!
User avatar
Gold Boarder


cron