Product slider not showing when clicking on tabs

This isn’t the best approach but you could force a resize event, essentially forcing the tabs to show.

$(window).trigger('resize');

You may want to do this after the page completely loads.

$(window).load(function(){
    $(window).trigger('resize');
});