Hi, some customers do not use portfolio. Is it possible to deactivate it as layerslider / blog?
thanks
Hey czar,
You can add this code to the child theme to deactivate the portfolio:
add_action('init', 'avia_deregister_portfolio', 5);
function avia_deregister_portfolio()
{
remove_action('init', 'portfolio_register');
}
Best regards,
Peter
Thanks Peter, works fine
Hi,
Great, glad I could help you :)
Best regards,
Peter