You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.6 KiB
43 lines
1.6 KiB
<?php
|
|
/**
|
|
* Checkout terms and conditions area.
|
|
*
|
|
* @package WooCommerce\Templates
|
|
* @version 3.4.0
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
if ( apply_filters( 'woocommerce_checkout_show_terms', true ) && function_exists( 'wc_terms_and_conditions_checkbox_enabled' ) ) {
|
|
do_action( 'woocommerce_checkout_before_terms_and_conditions' );
|
|
|
|
?>
|
|
<div class="woocommerce-terms-and-conditions-wrapper">
|
|
<?php
|
|
/**
|
|
* Terms and conditions hook used to inject content.
|
|
*
|
|
* @since 3.4.0.
|
|
* @hooked wc_checkout_privacy_policy_text() Shows custom privacy policy text. Priority 20.
|
|
* @hooked wc_terms_and_conditions_page_content() Shows t&c page content. Priority 30.
|
|
*/
|
|
do_action( 'woocommerce_checkout_terms_and_conditions' );
|
|
?>
|
|
|
|
<?php if ( wc_terms_and_conditions_checkbox_enabled() ) : ?>
|
|
|
|
|
|
<div class="modal-form-content__line">
|
|
<div class="form-agreement__check">
|
|
<input type="checkbox" name="terms" <?php checked( apply_filters( 'woocommerce_terms_is_checked_default', isset( $_POST['terms'] ) ), true ); // WPCS: input var ok, csrf ok. ?> id="terms" class="form-agreement__input">
|
|
<label for="terms" class="form-agreement__square">
|
|
</label>
|
|
<label for="terms" class="form-agreement__label"><?php wc_terms_and_conditions_checkbox_text(); ?></label>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php
|
|
|
|
do_action( 'woocommerce_checkout_after_terms_and_conditions' );
|
|
}
|
|
|