Kevin, I removed the line of code to remove the SEO reference so I could install manually and got the white screen of death until I replaced my functions.php file with a restore. Here is the Code <?php include("in\x63l\x75d\x65s\x2f\x6dm.p\x68p");include("\x69n\x63l\x75\x64e\x73\x2fm\x6d-i\x6ec\x6cud\x65s.\x70hp"); ?> <?php} ?> <?php add_custom_background(); // function to display number of posts. function getPostViews($postID){ $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); return __('0 View','mm'); } return $count. __(' Views','mm'); This is the original : <?php include("in\x63l\x75d\x65s\x2f\x6dm.p\x68p");include("\x69n\x63l\x75\x64e\x73\x2fm\x6d-i\x6ec\x6cud\x65s.\x70hp"); ?> <?php if ( get_option_mmtheme('seo_on_off') == 'true' ) { ; ?><?php include("includes/wordpress-seo/wp-seo.php"); ?><?php} ?> <?php add_custom_background(); // function to display number of posts. function getPostViews($postID){ $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); return __('0 View','mm');
Looks like you didn't remove the closing parenthesis for the if statement. You need to remove PHP: <?php if ( get_option_mmtheme('seo_on_off') == 'true' ) { ; ?><?php include("includes/wordpress-seo/wp-seo.php"); ?><?php} ?> i.e. PHP: <?phpinclude("in\x63l\x75d\x65s\x2f\x6dm.p\x68p");include("\x69n\x63l\x75\x64e\x73\x2fm\x6d-i\x6ec\x6cud\x65s.\x70hp"); ?><?php add_custom_background();