1
| Fatal error: Call to undefined method stdClass::onDisplay() |
1. You need to go to \libraries\joomla\html\ folder on your hosting.
2. Download and open editor.php file in your editor. You should look for the following code:
1
| if ( $temp = $plugin ->onDisplay( $editor , $this ->asset, $this ->author)) |
3. Replace the code with the following code:
1
| if (method_exists( $plugin , 'onDisplay' ) && $temp = $plugin ->onDisplay( $editor , $this ->asset, $this ->author)) |
4. Save changes and upload upload file to your Joomla. Replace original editor.php. Be sure to back up original file before modification.