ホーム > concrete5 > 携帯用のハック
 
2 3 4 5 6 7 8 9 10 >> 

携帯用ハック

携帯用テーマ&ライブラリのダウンロード mobile theme with libraries

上記のファイルをダウンロードして展開したファイルを /themas/mobile/ にUpLoad

 

Filename: /config/site_themes_paths.php に下記を追加

if(file_exists(DIR_BASE . "/themes/mobile/custom_cellular.php")){
    $_CONF['site_url']= BASE_URL;

    define("RESIZER", "/themes/mobile/imageresizer.php");
    require_once(DIR_BASE . "/themes/mobile/custom_cellular.php");
    if(CUSTOM_MOBILE_is_cellular()) {
        $v = View::getInstance();
        $v->setTheme('mobile');
    }
}

以上で携帯からでも C5サイトが閲覧できるようになります。

現在ログイン機能等も動作することができるよう調査中。