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
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
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
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
I got it!
Thank you so much!