We receiving the following error:
Code: Select all
0 - Call to undefined method PhocaGalleryUtils::getInfo()
Joomla Version: 3.9.24
Code: Select all
0 - Call to undefined method PhocaGalleryUtils::getInfo()
Code: Select all
echo PhocaGalleryUtils :: getInfo ();
Code: Select all
echo PhocaGalleryUtils::getExtInfo();
What are these "override files" and how does one make a "new override?"The solution to the frontend display problem is now very simple. The old override files are deleted and a new override of the same view is generated with the desired change.
It worked perfectly. I had to delete overrides for both "categories view" and "category view" after changingHello Grover! Override is a method to just override a view in a component in Joomla!. You can see it on the folder of your template below the subfolder html. It is more easy doing it if from the backend of Joomla: go on the menu Extensions > Template > Template list and after selected your template, go to the create override section, select the component and finally the view you want override. Automatically Joomla will create a copy of the files of the view in the folder templates/your_template/html/component_name/view_name. This is very usefull for customize your site, but not in that case: The problem with phocadownload was that these files in the html folder of my template call a method of Phocadownload that not exists because they are an older version of the component. Deleting these files can solve the problem.
Code: Select all
echo PhocaGalleryUtils :: getInfo ();