Hi there,
I am going to use Enfold for a project for a client and I really like to know if it’s possible to remove the portfolio option.
I especially want the ‘Portfolio items’ option in the backend gone so the backend will be as clutterfree as possible..
Regards,
Marcel
Hey Marcel!
Thank you for using Enfold.
Yes, it is possible to remove the portfolio items. Edit functions.php then remove this line:
require_once( 'includes/admin/register-portfolio.php' ); // register custom post types for portfolio entries
Or replace it with:
//require_once( 'includes/admin/register-portfolio.php' ); // register custom post types for portfolio entries
Regards,
Ismael
That works great. but is it possible to disable it in the child function.php file? That way it is update proof..
Hi!
Add this in the functions.php file:
remove_action('init', 'portfolio_register');
Regards,
Ismael
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');
}