Code-Snippets-Functions/Execute a function on a child site/WooCommerce/change-terms-conditions-checkbox-text-checkout.txt

6 lines
366 B
Text

add_filter( 'woocommerce_get_terms_and_conditions_checkbox_text', 'custom_terms_and_conditions_checkbox_text' );
function custom_terms_and_conditions_checkbox_text( $text ){
$text = get_option( 'woocommerce_checkout_terms_and_conditions_checkbox_text', sprintf( __( 'I have read and agree to the website %s', 'woocommerce' ), '[terms]' ) );
return $text;
}