• Resolved konsument

    (@konsument)


    Hey folks,

    Im trying to remove the meta-box from pages with remove_meta_box core-function. According how the plugin adds the box

    // Add meta box
    add_meta_box( 'A2A_SHARE_SAVE_meta', $title, 'A2A_SHARE_SAVE_meta_box_content', $post_type, 'advanced', 'high' );

    this function should work

    function remove_share_box() {
    	remove_meta_box('A2A_SHARE_SAVE_meta', 'page', 'advanced');
    }
    add_action( 'admin_menu', 'remove_share_box' );

    but it doesnt. How can I achieve this?

    • This topic was modified 7 years, 3 months ago by konsument.
    • This topic was modified 7 years, 3 months ago by konsument.
Viewing 1 replies (of 1 total)
  • Thread Starter konsument

    (@konsument)

    Ok. Found a solution. Nevermind ??

    function remove_share_box() {
        remove_meta_box('A2A_SHARE_SAVE_meta', 'page', 'advanced');
    }
    add_action( 'add_meta_boxes' , 'remove_share_box', 40 );
Viewing 1 replies (of 1 total)
  • The topic ‘How to hide meta box from pages / posts’ is closed to new replies.