Code didn’t work in the latest release of the theme, this is my solution to add in functions.php:
add_action('after_setup_theme', 'remove_portfolio');
function remove_portfolio() {
remove_action('init', 'portfolio_register');
}
That works great. but is it possible to disable it in the child function.php file? That way it is update proof..
Fixed my own problem! :)
Seems like this is a WordPress/php problem rather then specific to the Enfold theme.
The problem lies in the max_vars_input option in the server configuration.
Default is 1000 and when there are many menu-options this option needs to be higher.
You can change it in php.ini when you have access to it or add it to your .htaccess file.
Add something like max_input_vars = 3000; to your php.ini file or
php_value max_input_vars 3000 to your .htaccess file.