Created
February 25, 2025 13:03
-
-
Save woogists/18ba46f128222f730da8b95247947438 to your computer and use it in GitHub Desktop.
Allow customers to zoom into bundled item images on hover
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
<?php | |
add_filter( 'woocommerce_bundle_front_end_params', 'sw_pb_enable_zoom_bundled_items_images' ); | |
function sw_pb_enable_zoom_bundled_items_images( $frontend_params ) { | |
$frontend_params[ 'zoom_enabled' ] = 'yes'; | |
return $frontend_params; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment