Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( document ).ready( function() {
- var productImage = $( '.attachment-woocommerce_thumbnail' );
- function setHeight( el ) {
- var maxHeight = 0;
- if ( el.length ) {
- el.each( function() {
- if ( $( this ).outerHeight() > maxHeight ) {
- maxHeight = $( this ).outerHeight();
- }
- } );
- el.css( 'min-height', maxHeight );
- console.log(maxHeight)
- }
- }
- setHeight(productImage);
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment