Block All in One SEO from altering site title

Here is the solution to completely remove it’s title filter First disable “force rewrites” in “performance” Then add this code to theme “functions.php” add_action( ‘template_redirect’, ‘remove_aioseo_wp_title’, 1 ); function remove_aioseo_wp_title() { global $aiosp; if( isset( $aiosp ) ) { remove_filter( ‘wp_title’, array( $aiosp, ‘wp_title’ ), 20 ); } } Edit: This is the new code … Read more

two meta tags with all in one seo

From what I see on that theme it would not be in header.php. It would be related in the theme since it already has an SEO optimization feature built in. You need to go through the functions.php and seek SEO and remove modify this line: $default=”global|slider|layout|seo|translations”; to $default=”global|slider|layout|translations”; Which will remove the setting to be … Read more