Skip to content

Instantly share code, notes, and snippets.

@woogists
Created February 25, 2025 13:03
Show Gist options
  • Save woogists/18ba46f128222f730da8b95247947438 to your computer and use it in GitHub Desktop.
Save woogists/18ba46f128222f730da8b95247947438 to your computer and use it in GitHub Desktop.
Allow customers to zoom into bundled item images on hover
<?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