Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Nimble3

    (@nimble3)

    Please add below code to functions.php of your theme

    add_filter('nimble_portfolio_post_type_args', 'handle_nimble_portfolio_post_type_args', 11);
    
    function handle_nimble_portfolio_post_type_args($args) {
    	$args['supports'][] = 'comments';
    	return $args;
    }

    The code doesn’t work. Solution?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘comments in Nimble portfolio’ is closed to new replies.