Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #248978

    Hello:
    Thank you for this amazing theme!
    I would like to change the names of the menu on the left-side in Admin area.
    I need to change the name “Portfolio items” for “Options”.
    Which file has this code? or How I can do this?
    Your help is highly appreciated!
    Steve

    #249016

    Hey SkyBlue7!

    Thank you for using the support forum!

    You can edit includes > register-portfolio.php. Find this code on line 9:

    'name' => _x('Portfolio Items', 'post type general name','avia_framework'),
    

    Please create a backup of the file first before doing anything. I hope that helps.

    Regards,
    Ismael

    #249335

    Thank you Ismael!
    Awesome, works just fine!
    Now, I would like to hide some options in the same are of the admin.
    per example, I would like to hide “Media”
    How Can I do this?
    Thank you so much!

    Steve

    #249399

    Hey!

    Please go to Appearance > Editor and open Functions.php file and find

    avia_nav_menus(); //call the function immediatly to activate
    }

    and add following code right below it

    function enfold_remove_media_controls() {
         remove_action( 'media_buttons', 'media_buttons' );
    }
     add_action('admin_head','enfold_remove_media_controls');

    Cheers!
    Yigit

    #249425

    I got it!
    Thank you so much!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Changing the names of the menu options in Admin left-navigation Menu’ is closed to new replies.