Disable schema being outputted from All in One SEO on products in WooCommerce

Disable schema being outputted from All in One SEO on products in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter( 'aioseo_schema_disable', 'aioseo_disable_schema_products' );

function aioseo_disable_schema_products( $disabled ) {
   if ( is_singular( 'product' ) && aioseo()->helpers->isWooCommerceActive() ) {
      return true;
   }
   return $disabled;
}
2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.