Dear sirs,
I have the creativity template set on http://www.bfcgroup.gr
It works fine for the site's default language (greek) but when I translated the webpage I can't get the body class="onepage" to go through for the rest of the languages.
so http://www.bfcgroup.gr appears fine as onepage frontpage for greek
but http://www.bfcgroup.gr/en does not appear as the frontpage of english making the bottom1-1 module position messed up.
Accordingly http://www.bfcgroup.gr/ru and http://www.bfcgroup.gr/bg also suffer the same issues.
I tested using chrome's developer tools to add the 'onepage' class to the body and Voila! all modules fell immediately into place! It was magic. So I looked into default.php for the template and saw the lines:
$tpl_page_suffix = $this->page_suffix != '' ? ' class="'.$this->page_suffix.'"' : '';
// check if the one page mode is enabled
$one_page_mode = stripos($this->page_suffix, 'onepage') !== FALSE;
// make sure that the modal will be loaded
JHTML::_('behavior.modal');
Which means that I can somehow tell the template to treat a specific subpage as onepage layout and use the 'onepage' on the body class. I suppose I should do that on the default home pages of each language. Ok so far...
However I can't figure out where to put the text 'onepage' (or any other text if necessary) to make this happen. I must be missing something as I browsed the greek subpages and found nowhere ANY such text or class to use on the other languages.
Could you please help me out?