1. 服务器/VPS/主机用户Telegram电报群: https://t.me/openos
    黑群晖 Synology Telegram电报群: https://t.me/nasfan
    排除公告

Chevereto 图片展示页面默认显示嵌入代码

本帖由 post2020-11-23 发布。版面名称:服务器论坛

  1. post

    post New Member

    注册:
    2019-10-24
    帖子:
    465
    看到论坛好多人在问怎么样把Chevereto的图片展示页面从"关于"改为"嵌入代码"页面, 其实方法很简单, 只需要修改app/routes/route.image.php文件.

    $tabs = [
    [
    "label" => _s('About'),
    "id" => "tab-about",
    "current" => true,
    ]
    ];
    if(CHV\getSetting('theme_show_embed_content')) {
    $tabs[] = [
    "label" => _s('Embed codes'),
    "id" => "tab-codes",
    ];
    }



    修改为

    $tabs = [
    [
    "label" => _s('About'),
    "id" => "tab-about",
    ]
    ];
    if(CHV\getSetting('theme_show_embed_content')) {
    $tabs[] = [
    "label" => _s('Embed codes'),
    "id" => "tab-codes",
    "current" => true,
    ];
    }




    [​IMG]