woocommerce_gzd_photovoltaic_systems_vat_exemption_available_notice Filter
$param
string
add_filter( "woocommerce_gzd_photovoltaic_systems_vat_exemption_available_notice", function( $param ) { // Do something return $param; }, 10, 1 );
woocommerce_gzd_review_order_before_cart_contents Action
Before review order product table. Fires before rendering the checkout review order product table. This additional template replaces Woo’s default product table within review-order.php.
add_action( "woocommerce_gzd_review_order_before_cart_contents", function( ) { // Do something }, 10 );
woocommerce_gzd_before_checkout_order_submit Action
add_action( "woocommerce_gzd_before_checkout_order_submit", function( ) { // Do something }, 10 );
woocommerce_gzd_review_order_before_submit Action
Before review order submit button. This hooks fires right before outputting the order submit button.
add_action( "woocommerce_gzd_review_order_before_submit", function( ) { // Do something }, 10 );
woocommerce_gzd_review_order_after_submit Action
add_action( "woocommerce_gzd_review_order_after_submit", function( ) { // Do something }, 10 );
woocommerce_gzd_after_checkout_order_submit Action
add_action( "woocommerce_gzd_after_checkout_order_submit", function( ) { // Do something }, 10 );
woocommerce_gzd_before_legal_checkbox_{$checkbox_id} Action
Before render checkbox template. Fires before a checkbox with `$checkbox_id` is rendered.
$checkbox
\WC_GZD_Legal_Checkbox The checkbox instance.
woocommerce_germanized_checkout_show_terms Filter
Filter that allows hiding the terms checkbox in checkout.
$hide
bool Whether to hide the terms checkbox.
add_filter( "woocommerce_germanized_checkout_show_terms", function( $hide ) { // Do something return $hide; }, 10, 1 );