• Just installed to give it a run through and really like what I see so far. Only question I have is if there is a way to not display the SEO Settings Options from custom post types? I have a page for displaying a list of custom posts and am concerned the client will not know what the heck to do with all this information.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • John

    (@johnlamansky)

    This feature is coming in a future version.

    John

    (@johnlamansky)

    Workaround Idea:

    If you have a custom post type called, for example, “Articles”, then add this line of code to your theme’s functions.php file:

    function remove_su_meta_box() {
    	remove_meta_box('su_postmeta', 'articles', 'normal');
    }
    add_action('admin_menu', 'remove_su_meta_box', 11);
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: SEO Ultimate] Remove settings from Custom Post type’ is closed to new replies.