Hi,
I use WPML. My translators are in the pages to be translated as an author to have access.
This works for pages and posts. In the Portfolio items but there is no author field.
Can I assign portfolio items to a person/autor?
Hi RisingStar!
Thank you for using Enfold.
Add this in the functions.php file:
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
function avf_portfolio_cpt_args_mod($args) {
$args['supports'][] = 'author';
return $args;
}
Regards,
Ismael
Works! Thanks a lot!!