yanknudtskov of YanCo ApS
7/4/2017 - 12:24 PM

Remove inline terms and conditions on the WooCommerce Checkout Page

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;
}