Hello,
I have tried to enable Error Reporting in Global Configuration to Development mode, and I got this error message on your site
Fatal error: Call to a member function get() on a non-object in /home/pingusol/public_html/dev/sj/templates/sj_decou/index.php on line 69
This is an error of SJ Decoud template, to fix this issue, I have applied solution below
– Open the file:
templates/sj_decou/index.php
– Find the code line:
[PHP]$cls_body .= JFactory::getApplication()->getMenu()->getActive()->params->get(‘pageclass_sfx’);[/PHP]
– And replace it with:
[PHP]$activeMenu = JFactory::getApplication()->getMenu()->getActive();
if($activeMenu) {
$cls_body .= $activeMenu->params->get(‘pageclass_sfx’);
}
[/PHP]
Please send this update to Template provider, so they can apply it for their template.