I have a problem with Home Page title

This is more of an SEO question than a WordPress one… Changes won’t happen until after Google re-crawls your site – that is, the next time a googlebot visits your site and updates their information about your site. Wait for the next time they do. The rate/timing for the next googlebot crawl varies by site

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

How to restrict an admin page, if the user is not superadmin?

To remove from the admin menu, you could use remove_menu_page(): add_action( ‘admin_menu’, function ( ) { if (is_super_admin()) return; remove_menu_page(); // or remove_submenu_page( … },99); If for some reason the page still exists, it’s just missing it’s menu link, you could check the get_current_screen() to see if the page is being viewed, and prevent access: … Read more