9 years 8 months ago - 9 years 8 months ago #230786
by cuertech
Whilst updating from Coolness 1.6.1 to 2.0.1 templates on a copy test site I found that module positions-5 and position-6 would not display correctly (i.e. side by side) whereas modules position 3 and 4 worked perfectly as before.
Looking at the 2.0.1 main template file, it showed on lines 102 / 103
$topCount = $this->countModules('position-3') + $this->countModules('position-4');
$botCount = $this->countModules('position-2') + $this->countModules('position-5');
as ganged module positions.
Editing the lines to
$topCount = $this->countModules('position-3') + $this->countModules('position-4');
$botCount = $this->countModules('position-5') + $this->countModules('position-6');
solved the issue.
I submit this as assistance to others that may come across the problem, as I'd had noticed display issues with this template before in versions later than 1.6.1.
Cheers
AJB
Last edit: 9 years 8 months ago by cuertech.
The following user(s) said Thank You: Jacob
Please Log in to join the conversation.