Topic Resolution: Resolved
  • Closed
  • 18.11.2015 at 13:31 #22153

    Hi, i’m trying to remove useless metaboxes from admin post area for Authors. I use remove_meta_box() in function file. But that has no effect for the “post option” metabox that evolve theme has in admin UI (options are for full width/slider/widget). I ‘d appreciate any hint. Thank you.

    Denzel Chia
    Moderator
    Posts: 2656
    19.11.2015 at 07:37 #22182

    Hi,

    In evolve-plus/library/functions/basic-functions.php

    Find the following function.

    public function evolve_add_meta_boxes() {
    $this->evolve_add_meta_box('evolve_post_options', 'Post Options', 'post');
    $this->evolve_add_meta_box('evolve_page_options', 'Page Options', 'page');
    }

    Change to the following.

    public function evolve_add_meta_boxes() {
    if(current_user_can('administrator')){
    $this->evolve_add_meta_box('evolve_post_options', 'Post Options', 'post');
    $this->evolve_add_meta_box('evolve_page_options', 'Page Options', 'page');
    }
    }

    Thanks!

    Georgios Trakadas
    Spectator
    Posts: 1
    20.11.2015 at 06:34 #22228

    Thank you!