This is the solution 61extensions provided:
Just insert into functions.php
add_action( 'wp_footer', 'sod_live_ajax_fix' );
function sod_live_ajax_fix(){
?>
<script>
jQuery(document).ready(function(){
jQuery('.thumbnail_container').live({
mouseenter:
function(){
var container = jQuery(this), buttons = container.find('.button');
container.containerHeight = container.height()/2;
buttons.css({opacity:0, visibility:'visible', top: container.containerHeight});
if(container.containerHeight < 20)
{
container.containerHeight = container.height()/2; buttons.css({top: container.containerHeight});
}
if(buttons.length > 1)
{
buttons.each(function(i)
{
var button = jQuery(this);
if(i == 0)
{
var newPos = container.containerHeight - button.outerHeight()/2;
button.stop().animate({top:newPos - 3, opacity:1})
}
else
{
var newPos = container.containerHeight + button.outerHeight()/2;
button.stop().animate({top:newPos + 3, opacity:1})
}
});
}
else
{
buttons.stop().animate({opacity:1});
}
},
mouseleave:
function(){
var container = jQuery(this), buttons = container.find('.button');
container.containerHeight = container.height()/2;
buttons.css({opacity:0, visibility:'visible', top: container.containerHeight});
buttons.stop().animate({opacity:0, top: container.containerHeight});
}
});
});
</script>
<?php
}