Index: trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php	(revision 538)
+++ trunk/xpressme_integration_kit/wp-content/plugins/xpressme/include/xpress_common_functions.php	(revision 540)
@@ -137,7 +137,11 @@
 	require_once get_xpress_dir_path() . '/include/xpress_block_render.php'; 
 
-
 	foreach($blocks as $block){ 
 		$func_file = $block->func_file; 
+		
+		// Avoid the failure of the operation when switch_to_blog() and other plugin code is called on the admin page.
+		$excludes = '|global_recent_posts_list_block.php|my_.*_block.php|';
+		if (preg_match('/' . $excludes . '/' , $func_file)) continue;
+		
 		$call_theme_function_name = str_replace(".php", "", $func_file); 
 		$inc_theme_file_name = str_replace(".php", "", $func_file) . '_theme.php'; 
