Buy me a coffee

How to remove End Time of event in Event Summary Block

To remove End Time of event in Event Summary Block

43c3724dc1dc66823fcd Min

You can use this code to Website Tools > Code Injection > Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $(".event-time-localized").each(function() {
    console.log($(this).text())
    var currentText = $(this).text();
    var currentTextArr = currentText.split("–")
    if(currentTextArr.length == 2) {
      $(this).text(currentTextArr[0])
    }	
  });
})
</script>

2a074198f10956570f18 Min

Result

3996889639079e59c716 Min