=== WC Gift Packaging === Contributors: fouadvollmer, grandy Tags: Woocommerce, Checkout, Gift, Packaging, Wrapping Requires at least: 3.0 Tested up to: 5.2 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Copyright: Arpit Tambi Copyright URI: http://aheadzen.com/ Stable tag: 1.5 This plugin adds a 'Send this order packaged as gift' option on the WooCommerce checkout. == Description == Add a simple "Send this order packaged as gift" checkbox to the checkout. Optionally it is possible to set a price for the packaging. If you want multiple gift packagings and other fancy stuff this is not the plugin for you … this plugin is intentionally very lightweight to fit directly into the WooCommerce user experience. == Frequently Asked Questions == = Is it possible to add a price for the packaging = Yes. You can change this under Woocommerce > Settings > General > WC Gift Packaging in the 'Gift packaging cost' field. = Is it possible to change the position of the checkbox = Yes. You can change the hook of the checkbox like this: ` add_filter( 'wc_gift_packaging_field_hook', 'custom_hook_position' ); function custom_hook_position( $text ) { return 'woocommerce_after_order_notes'; } ` = Is it possible to change the text of the checkbox = Yes. You can change the text of the checkbox with the `wc_gift_packaging_checkout_field` filter: ` add_filter( 'wc_gift_packaging_checkout_field', 'my_checkbox_text' ); function my_checkbox_text( $text ) { return __( "Send this order as awesome packaged gift" ); } ` = Is it possible to wrap the checkbox in some html = Yes. You can use the `before_wc_gift_packaging_checkout_field` and `after_wc_gift_packaging_checkout_field` hooks like this: ` add_action( 'before_wc_gift_packaging_checkout_field', 'custom_start' ); function custom_start() { echo '