• Resolved antonyantoniou

    (@antonyantoniou)


    Hello,

    I have installed your plugin and it works superbly, the only issue I have found is that it does not seem to hide the plugin called Post Grid by PickPlugins.

    I wondered if you have any advice on this matter?

    Thank you very much

    Kind Regards
    Antony

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Fabio Pacifici

    (@fabsere)

    Hi Antony, thanks for your message.
    The Freelance admin hider isn’t designed to block all plugins but the default WordPress admin menu items.

    I’ll look into that and add support for Post Grid in the next release.

    Plugin Author Fabio Pacifici

    (@fabsere)

    In the meantime if you want I can suggest a quick hack to hide the main Post Grid menu item.

    Place this code at the end of the function fpah_remove_menus(){} just before its closing brachet.

    
            # Hack POST_GRID
            remove_menu_page('edit.php?post_type=post_grid');
            if ($_SERVER['REQUEST_URI'] == "/wp-admin/edit.php?post_type=post_grid") {
                $admin = home_url() . "/wp-admin";
                header('Location:' . $admin);
                exit();
            }
    

    The function is inside the freelance admin hider functions.php file.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Post Grid Plugin’ is closed to new replies.