Thank you for the quick response!
I plan to switch to SEOPress with Yoast SEO.
I need to remove meta tags from one of the pages. I use:
function disable_seopress_meta_description($meta_description) {
if (is_page(32537)) {
return '';
}
return $meta_description;
}
add_filter('seopress_titles_desc', 'disable_seopress_meta_description');
function disable_seopress_canonical($canonical_url) {
if (is_page(32537)) {
return '';
}
return $canonical_url;
}
add_filter('seopress_titles_canonical', 'disable_seopress_canonical');
It works. But I don’t know how to disable meta property
This is for “peepso”. Your plugin does not work correctly with groups, they have the same id with the parent page.