Remove inline terms and conditions on the WooCommerce Checkout Page
<?php
add_filter( 'woocommerce_format_content', 'yanco_remove_inline_terms', 10, 2 );
function yanco_remove_inline_terms( $apply_filters, $raw_string ) {
if( is_checkout() ) {
return '';
}
return $apply_filters;
}