Fatal error: Class 'JParameter' not found in template/theme/index.php on line xxx
Asked Answered
W

1

6

i upgrade template 2.5 to 3.0, template upgrade but come the following error.

Fatal error: Class 'JParameter' not found in template/theme/index.php on line xxx

Wilks answered 7/10, 2013 at 13:12 Comment(1)
please add the code that is on that line causing the errorNgocnguyen
N
13

JParameter was removed in Joomla 3.0 and now either JForm or in most cases JRegistry should be used.

So use the following code, and change to suit your own needs

$jparams = new JRegistry();
$variable = $jparams->get('param_name');
Ngocnguyen answered 7/10, 2013 at 13:22 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.