Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Disable portfolio functionality #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');
    }
    in reply to: Disable portfolio functionality #449047

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

    in reply to: Too many items in menu breaks it? #344051

    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.

Viewing 3 posts - 1 through 3 (of 3 total)