I'm using a WordPress plugin to display events on a calendar. It has the following markup to display days:
<th id="tribe-events-monday" title="Monday" data-day-abbr="Mon">Monday</th>
Instead of displaying "Monday", I'd like it to display "Mon". Is it possible to output the data attribute (data-day-abbr) using CSS?
This would be a prefered workaround, otherwise, I'll need to create child template files.