This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add gift message on checkout after the "Order Notes" | |
add_action( 'woocommerce_after_order_notes', 'bdev_is_this_a_gift' ); | |
function bdev_is_this_a_gift() { | |
$domain = 'woocommerce'; | |
?> | |
<style>p#gift_field{display:none;}</style> | |
<div id="message"> | |
<h3><i class="fa fa-gift"></i><?php _e( ' Is this a gift?', 'woocommerce' ); ?></h3> | |
<?php |