woocommerce.js 526 B

123456789101112131415161718192021
  1. /**
  2. * Header enhancements for more intelligent dynamic headers.
  3. *
  4. * This sets the masthead to the height of an uploaded image and applies sticky navigation.
  5. */
  6. ( function( $ ) {
  7. // Add SVG image zoom icon
  8. function imageZoomIcon() {
  9. $( '.single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger' )
  10. .empty()
  11. .append( '<i class="fa fa-search-plus"></i>' );
  12. }
  13. // Initialize init on page load.
  14. $( document ).on( 'ready', function() {
  15. imageZoomIcon();
  16. });
  17. } )( jQuery );