Index: /branches/Ver2.1/xpressme_integration_kit/include/add_xpress_process.php
===================================================================
--- /branches/Ver2.1/xpressme_integration_kit/include/add_xpress_process.php	(revision 409)
+++ /branches/Ver2.1/xpressme_integration_kit/include/add_xpress_process.php	(revision 410)
@@ -1,3 +1,10 @@
 <?php
+// used wptouch plugin & iPhone access check (thx uemu)
+function is_iphone_with_wptouch(){
+	global $wptouch_plugin;
+	if (is_object($wptouch_plugin)) return $wptouch_plugin->applemobile;
+	return false;
+}
+
 require_once( dirname( __FILE__ ).'/request_url.php');
 if (is_xpress_index_page_call()){
@@ -33,10 +40,15 @@
 		$wp_output = ob_get_contents();
 	ob_end_clean();
-	// It judges it here because it does in is_index_page() through feed to which the permalink is set. 
-	if (is_wordpress_style() || is_feed()) {
-		echo $wp_output;
+
+	//Rendering Select
+	if(
+		is_wordpress_style()		// When the display mode is WordPress style
+		|| is_feed()				// It judges it here because it does in is_index_page() through feed to which the permalink is set.
+		|| is_iphone_with_wptouch()	// When iPhone access & used wptouch plugin (thx uemu)
+	){
+			echo $wp_output;
 	} else {
-		require_once( dirname( __FILE__ ).'/xpress_render.php' );
-		xpress_render($wp_output);
+			require_once( dirname( __FILE__ ).'/xpress_render.php' );
+			xpress_render($wp_output);
 	}
 
Index: /branches/XPressMU/xpressme_integration_kit/include/add_xpress_process.php
===================================================================
--- /branches/XPressMU/xpressme_integration_kit/include/add_xpress_process.php	(revision 409)
+++ /branches/XPressMU/xpressme_integration_kit/include/add_xpress_process.php	(revision 410)
@@ -1,3 +1,10 @@
 <?php
+// used wptouch plugin & iPhone access check (thx uemu)
+function is_iphone_with_wptouch(){
+	global $wptouch_plugin;
+	if (is_object($wptouch_plugin)) return $wptouch_plugin->applemobile;
+	return false;
+}
+
 require_once( dirname( __FILE__ ).'/request_url.php');
 if (is_xpress_index_page_call()){
@@ -33,10 +40,15 @@
 		$wp_output = ob_get_contents();
 	ob_end_clean();
-	// It judges it here because it does in is_index_page() through feed to which the permalink is set. 
-	if (is_wordpress_style() || is_feed()) {
-		echo $wp_output;
+
+	//Rendering Select
+	if(
+		is_wordpress_style()		// When the display mode is WordPress style
+		|| is_feed()				// It judges it here because it does in is_index_page() through feed to which the permalink is set.
+		|| is_iphone_with_wptouch()	// When iPhone access & used wptouch plugin (thx uemu)
+	){
+			echo $wp_output;
 	} else {
-		require_once( dirname( __FILE__ ).'/xpress_render.php' );
-		xpress_render($wp_output);
+			require_once( dirname( __FILE__ ).'/xpress_render.php' );
+			xpress_render($wp_output);
 	}
 
Index: /trunk/xpressme_integration_kit/include/add_xpress_process.php
===================================================================
--- /trunk/xpressme_integration_kit/include/add_xpress_process.php	(revision 409)
+++ /trunk/xpressme_integration_kit/include/add_xpress_process.php	(revision 410)
@@ -1,3 +1,10 @@
 <?php
+// used wptouch plugin & iPhone access check (thx uemu)
+function is_iphone_with_wptouch(){
+	global $wptouch_plugin;
+	if (is_object($wptouch_plugin)) return $wptouch_plugin->applemobile;
+	return false;
+}
+
 require_once( dirname( __FILE__ ).'/request_url.php');
 if (is_xpress_index_page_call()){
@@ -33,10 +40,15 @@
 		$wp_output = ob_get_contents();
 	ob_end_clean();
-	// It judges it here because it does in is_index_page() through feed to which the permalink is set. 
-	if (is_wordpress_style() || is_feed()) {
-		echo $wp_output;
+
+	//Rendering Select
+	if(
+		is_wordpress_style()		// When the display mode is WordPress style
+		|| is_feed()				// It judges it here because it does in is_index_page() through feed to which the permalink is set.
+		|| is_iphone_with_wptouch()	// When iPhone access & used wptouch plugin (thx uemu)
+	){
+			echo $wp_output;
 	} else {
-		require_once( dirname( __FILE__ ).'/xpress_render.php' );
-		xpress_render($wp_output);
+			require_once( dirname( __FILE__ ).'/xpress_render.php' );
+			xpress_render($wp_output);
 	}
 
