Fatal error: class "JParameter" was not found in template / theme / index.php in line xxx

i update the template from 2.5 to 3.0, update the template, but the following error appears.

Fatal error: class "JParameter" was not found in template / theme / index.php in line xxx

+6
source share
1 answer

JParameter was removed in Joomla 3.0, and now you need to use JForm or in most cases JRegistry .

Therefore, use the following code and modify it to suit your needs.

 $jparams = new JRegistry(); $variable = $jparams->get('param_name'); 
+13
source

Source: https://habr.com/ru/post/955406/


All Articles