woocommerce_gzd_digital_product_types
The WooCommerce Germanized woocommerce gzd digital product types hook.
Description
Parameters (1)
- 0. $get_option (unknown) =>
get_option( 'woocommerce_gzd_checkout_legal_digital_types', array( 'downloadable' ) )
- The get option.
Usage
- To run the hook, copy the example below.
- $get_option = apply_filters( 'woocommerce_gzd_digital_product_types', $get_option );
- if ( !empty( $get_option ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the woocommerce_gzd_digital_product_types callback
- function filter_woocommerce_gzd_digital_product_types( $get_option ) {
- // make filter magic happen here...
- return $get_option;
- };
- // add the filter
- add_filter( 'woocommerce_gzd_digital_product_types', 'filter_woocommerce_gzd_digital_product_types', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'woocommerce_gzd_digital_product_types', 'filter_woocommerce_gzd_digital_product_types', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /includes/wc-gzd-product-functions.php
- $types = apply_filters( 'woocommerce_gzd_digital_product_types', get_option( 'woocommerce_gzd_checkout_legal_digital_types', array( 'downloadable' ) ) );