Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #341135

    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

    #341370

    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

    #449047

    That works great. but is it possible to disable it in the child function.php file? That way it is update proof..

    #449155

    Hi!

    Add this in the functions.php file:

    remove_action('init', 'portfolio_register');
    

    Regards,
    Ismael

    #498017

    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');
    }
    #498072

    Hey!

    Glad you figured it out and thank you for sharing your solution!

    Regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.