woocommerce_gallery_full_size filter-hookWC 1.0

Usage

add_filter( 'woocommerce_gallery_full_size', 'wp_kama_woocommerce_gallery_full_size_filter' );

/**
 * Function for `woocommerce_gallery_full_size` filter-hook.
 * 
 * @param  $apply_filters 
 *
 * @return 
 */
function wp_kama_woocommerce_gallery_full_size_filter( $apply_filters ){

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

Where the hook is called

wc_get_product_attachment_props()
woocommerce_gallery_full_size
wc_get_gallery_image_html()
woocommerce_gallery_full_size
woocommerce/includes/wc-product-functions.php 795
$full_size           = apply_filters( 'woocommerce_gallery_full_size', apply_filters( 'woocommerce_product_thumbnails_large_size', 'full' ) );
woocommerce/includes/wc-template-functions.php 1598
$full_size         = apply_filters( 'woocommerce_gallery_full_size', apply_filters( 'woocommerce_product_thumbnails_large_size', 'full' ) );

Where the hook is used in WooCommerce

Usage not found.