Viewing 1 replies (of 1 total)
  • Thread Starter davisnz

    (@davisnz)

    I found a solution, If anyone is interested, just add the following code to your functions.php:

    // REMOVE HTTPS META BOX //
    function remove_my_page_metaboxes() {
    remove_meta_box( 'wordpress-https','page','normal' ); // Custom Fields Metabox
    }
    add_action('admin_menu','remove_my_page_metaboxes');

    And that’s it.

Viewing 1 replies (of 1 total)

The topic ‘Remove Option from Pages’ is closed to new replies.