• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • 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