Thanks, but I looked at that and the formatting seems to apply to both start and end dates the same. There’s too much code to hack this plug-in ( and I don’t know much php) so my solution is to just hide any date preceded with a hyphen with jquery. It’s pretty ghetto, but does the trick:
var dateTd = $('table.events-table tr td:first-child');
dateTd.each(function( index ) {
var newText = $(this).text().replace(/-\s\d{2}\/\d{2}\/\d{4}/g,"");
$(this).text(newText);
console.log(newText);
})
That only affects when the event is deleted. I want to only show the start date and never show the end date. I could possibly hide it with javascript but hoping for a more elegant solution.