The problem is in this file:
templates/gk_msocial/layouts/default.php
- Code: Select all
if($this->API->get('template_style', '1') == 2) {
$tpl_page_suffix = $this->page_suffix != 'class=pattern"'.$this->API->get('template_pattern', '1').'"' ? ' class="'.$this->page_suffix.' pattern'.$this->API->get('template_pattern', '1').'"' : '';
}
Above code checks if template style is set to "2" and only then uses page_suffix.
If you strip the code and left only:
- Code: Select all
$tpl_page_suffix = $this->page_suffix != 'class=pattern"'.$this->API->get('template_pattern', '1').'"' ? ' class="'.$this->page_suffix.' pattern'.$this->API->get('template_pattern', '1').'"' : '';
with no conditions, page suffix will work fine.