もはやネタ切れなので、やったことないネタを開発者フォーラムから拾ってみた。 data/class/SC_Display.php の 144行目をコメントアウト。その下で DEVICE_TYPE_PC を返すように定義する。 function detectDevice(){ $nu = new Net_UserAgent_Mobile(); $su = new SC_SmartphoneUserAgent_Ex(); $retDevice = 0; if ($nu->isMobile()) { return DEVICE_TYPE_MOBILE; } elseif ($su->isSmartphone()) { //return DEVICE_TYPE_SMARTPHONE; return DEVICE_TYPE_PC; } else { return DEVICE_TYPE_PC; } }