Created
December 23, 2014 02:23
-
-
Save bekarice/3a0898f8fa7d834af6eb to your computer and use it in GitHub Desktop.
WooCommerce Checkout Add-ons conditional display
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
/** | |
* Conditionally show gift add-ons if shipping address differs from billing | |
**/ | |
function wc_checkout_add_ons_conditionally_show_gift_add_on() { | |
wc_enqueue_js( " | |
$( 'input[name=ship_to_different_address]' ).change( function () { | |
if ( $( this ).is( ':checked' ) ) { | |
// show the gift checkout add-on -- replace '2' with the id of your add-on | |
$( '#wc_checkout_add_ons_2_field' ).show(); | |
} else { | |
// hide the gift checkout add-on -- replace '2' with the id of your add-on | |
$( '#wc_checkout_add_ons_2_field' ).hide(); | |
} | |
} ).change(); | |
" ); | |
} | |
add_action( 'wp_enqueue_scripts', 'wc_checkout_add_ons_conditionally_show_gift_add_on' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I have 2 fields
1: A file upload Field: Please upload your ID.
2: A checkbox field. Please confirm that this is a true copy of your ID
Since ID is optional field, i want the Checkbox to only show if the user uploaded an ID.
Possible?
Thank you.