Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #502083

    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?

    #502492

    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

    #502511

    Works! Thanks a lot!!

    #502561

    Hey,

    Great, glad we could help :-)

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Add Author Field to Portfolio Items’ is closed to new replies.