woocommerce_customer_get_downloadable_products filter-hookWC 1.0

Usage

add_filter( 'woocommerce_customer_get_downloadable_products', 'wp_kama_woocommerce_customer_get_downloadable_products_filter' );

/**
 * Function for `woocommerce_customer_get_downloadable_products` filter-hook.
 * 
 * @param  $downloads 
 *
 * @return 
 */
function wp_kama_woocommerce_customer_get_downloadable_products_filter( $downloads ){

	// filter...
	return $downloads;
}
$downloads
-

Where the hook is called

WC_Customer::get_downloadable_products()
woocommerce_customer_get_downloadable_products
woocommerce/includes/class-wc-customer.php 233
return apply_filters( 'woocommerce_customer_get_downloadable_products', $downloads );

Where the hook is used in WooCommerce

Usage not found.