9951 explained code solutions for 126 technologies


wordpressFix Woocommerce error: “offers”, “review”, or “aggregateRating” should be specified


function wc_remove_product_schema_product_archive() {
   remove_action( 'woocommerce_shop_loop', array( WC()->structured_data, 'generate_product_data' ), 10, 0 );
}
add_action( 'woocommerce_init', 'wc_remove_product_schema_product_archive' );ctrl + c