get params template - Joomla! Forum - community, help and support
hi,
i need params template mod_menu override. use code:
$pippo = new pippotemplate;
$ismobile = $pippo->ismobile();
$app =& jfactory::getapplication();
$template = $app->gettemplate(true);
$params = $template->params;
$mobileenabled = $params->get( 'mobile', '' );
$mobileenabled = intval($mobileenabled) == 1 ? true : false;
..this working in joomla 2.5 in joomla 3.0 give me white page, why?
can me?
thank you!
i need params template mod_menu override. use code:
$pippo = new pippotemplate;
$ismobile = $pippo->ismobile();
$app =& jfactory::getapplication();
$template = $app->gettemplate(true);
$params = $template->params;
$mobileenabled = $params->get( 'mobile', '' );
$mobileenabled = intval($mobileenabled) == 1 ? true : false;
..this working in joomla 2.5 in joomla 3.0 give me white page, why?
can me?
thank you!
hi 6sydney9,
turn error reporting maximum in global configuration's server tab. give detailed error message rather blank page.
kind regards,
nick
turn error reporting maximum in global configuration's server tab. give detailed error message rather blank page.
kind regards,
nick
Comments
Post a Comment