Adding this filter to the functions.php of my child theme worked for me.
add_filter('pll_get_post_types', 'my_pll_get_post_types');
function my_pll_get_post_types($types) {
return array_merge($types, array('services' => 'services'));
}
My post type was called services.
Yes it works. Just make sure you set the Redirect URI in your Instagram Developer API Client manager according to this URL structure…
http://mydomain.com/wp-admin/admin-ajax.php?action=instagrabber_redirect_uri
Thanks @achensee commenting out //$wpseo_metabox = new WPSEO_Metabox(); in the wordpress-seo/admin/class-metabox.php file worked for me.