• Resolved Miha Omejc

    (@mihaomejc)


    Hi there,
    this used to be a great simple plugin, but it’s getting more bloated with every update. Is there any option to remove Page Scripts meta box that came with recent update under Post and Page edit for all users? Unticking this option in page edit screen for every single user is not an option. Simple Headers & Footers mode setting mode doesn’t change this.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mircea Sandu

    (@gripgrip)

    Hi Miha,

    Thank you for reaching out, this is an oversight / bug, and we’ll get this corrected asap. When simple Headers & Footers mode is selected, none of this should show up.

    Thread Starter Miha Omejc

    (@mihaomejc)

    Thank you for your quick response.

    For anyone else interested with same issue – I removed it with this function until it’s not corrected in plugin:

    // Remove WPCode Lite plugin metaboxes
    function remove_metaboxes() {
      remove_meta_box( 'wpcode-metabox-snippets' , 'page' , 'normal' );
      remove_meta_box( 'wpcode-metabox-snippets' , 'post' , 'normal' );
    }
    add_action( 'add_meta_boxes' , 'remove_metaboxes', 50 );
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Option to remove meta boxes under posts and pages’ is closed to new replies.