[ad_1]
Hi @artdevca!
Yes that is correct, it’s because the plugin requires custom fields to be enabled on post types in order for it to work within the Block Editor.
You can add the support when registering your CPT by adding custom-fields to the supports array parameter like so:
'public' => false,
...
'supports' => array(
'title',
'custom-fields',
),
...Or by using the function add_post_type_support('your-cpt', 'custom-fields');
That should bring the Post to Google My Business metabox and Auto-post checkbox to your CPT!
~ Koen
Brilliant – worked like a charm.
Thank you so much for the super fast response! Have a good one!
Awesome, that’s good to hear! Happy to help. I’ll mark this is solved.
