Jump to content
  • 0

Usunięcie AJAX z bloku product_list


miccom

Question

Cześć.

 Chciałbym usunąć efekt otwieranego okienka z przyciskiem DO KOSZYKA podczas najechania kursorem myszki na okno product-container.

 

Gdzie znajdę pliki obsługujące ten element?

Proszę o pomoc.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

W global.js wyszukałem elementy mouseenter i mouseleave i zakomentowałem.

 

$(document).off('mouseenter').on('mouseenter', '.product_list.grid li.ajax_block_product .product-container', function(e){


if (screenLg)


{


var pcHeight = $(this).parent().outerHeight();


var pcPHeight = $(this).parent().find('.button-container').outerHeight() + $(this).parent().find('.comments_note').outerHeight() + $(this).parent().find('.functional-buttons').outerHeight();


$(this).parent().addClass('hovered').css({'height':pcHeight + pcPHeight, 'margin-bottom':pcPHeight * (-1)});


$(this).find('.button-container').show();


}


});






$(document).off('mouseleave').on('mouseleave', '.product_list.grid li.ajax_block_product .product-container', function(e){


if (screenLg)


{


$(this).parent().removeClass('hovered').css({'height':'auto', 'margin-bottom':'0'});


$(this).find('.button-container').hide();


}


});

 

 

 

 

 

Teraz już ten efekt nie działa, ale czy to właściwe założenie?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...