automatewoo/templates/optin-checkbox.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

18 lines
No EOL
645 B
PHP

<?php
// phpcs:ignoreFile
/**
* Override this template by copying it to yourtheme/automatewoo/optin-checkbox.php
*/
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) exit;
?>
<p class="automatewoo-optin form-row">
<label class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox">
<input type="checkbox" class="woocommerce-form__input woocommerce-form__input-checkbox input-checkbox" name="automatewoo_optin" <?php checked( isset( $_POST['automatewoo_optin'] ), true ); ?> id="automatewoo_optin" />
<span class="automatewoo-optin__checkbox-text"><?php echo Options::optin_checkbox_text() ?></span>
</label>
</p>