• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

validator.w3.org 1 error

Picn

Chevereto Member
Hi. We have 1 error only. How to fix this error please
 

Attachments

  • Screenshot_1.jpg
    Screenshot_1.jpg
    33.4 KB · Views: 19
Its a little bug?
Show in File: /app/loader.php from line 717
[CODE lang="php" title="/app/loader.php"] if (getSetting('enable_plugin_route')) {
$plugin_page = [
'type' => 'link',
'link_url' => G\get_base_url('plugin'),
'icon' => 'icon-code2',
'title' => _s('Plugin'),
'is_active' => 1,
'is_link_visible' => 1,
];
Page::fill($plugin_page);
array_unshift($pages_visible, $plugin_page);
}[/CODE]
Replace it with
[CODE lang="php" title="/app/loader.php" highlight="9"] if (getSetting('enable_plugin_route')) {
$plugin_page = [
'type' => 'link',
'link_url' => G\get_base_url('plugin'),
'icon' => 'icon-code2',
'title' => _s('Plugin'),
'is_active' => 1,
'is_link_visible' => 1,
'attr_target' => '_self',
];
Page::fill($plugin_page);
array_unshift($pages_visible, $plugin_page);
}[/CODE]
But after the next update of the script it can be, if @Rodolfo does not insert this itself, that the changes made by you have disappeared.
 
Document checking completed. No errors or warnings to show. Thank You! I keep a notepad of all edits and there should be no problems after the next update)
 
Back
Top