Hi. I got a problem with K2 item layout. I setted don't show these elements:
But there still is empty <ul> element:
Please, help me to remove this element.
<script type="text/javascript">(function($) {$(document).ready(function() {
$('ul').each(function(){
if( $(this).html().trim() == '' ) {
$(this).remove();
}
});
});})(jQuery)</script>