Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Anh Tran

    (@rilwis)

    Hi Trang,

    1. To disable the settings for a post type, please use this snippet:

    add_action( 'add_meta_boxes', function() {
    	remove_meta_box( 'slim-seo', 'your_post_type_1', 'normal' );
    	remove_meta_box( 'slim-seo', 'your_post_type_2', 'normal' );
    }, 99 );

    2. To create a new schema for a new custom post type, you can follow the part “How to add more schemas?” in the docs page. However, it’s quite technical.

    We’re working on a schema builder and hopefully will release it soon.

    Thread Starter Kai

    (@quoctrang)

    Many thanks for your reply, Anh Tran!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom Post Type settings & schema’ is closed to new replies.