@mwindey
You can remove it in main.php
Also this code probably needs to be removed from global.js of theme:
// IF LIST OF LATEST ITEMS IS TOO LONG, SHORTEN IT
if( $('.hc-latest #latest .simple-prod:last-child .img-link img').length ) {
var image_latest = new Image();
image_latest.onload = function () {
if( $('.hc-latest #latest').height() > 900 ) {
$('.hc-latest #latest').attr('data-original-height', $('.hc-latest #latest').height()).addClass('shorten');
}
$('body').on('click', '.hc-latest #latest.shorten .show-more-latest', function() {
$('.hc-latest #latest').animate({height: $('.hc-latest #latest').attr('data-original-height') + 'px'}, 300, function(){
$('.hc-latest #latest').removeClass('shorten').css('height', 'auto');
});
});
}
image_latest.src = $('.hc-latest #latest .simple-prod:last-child .img-link img').attr('src');
}