Change heading element?

When I have date headers enabled, it structures the widget as such:

<div id="lw_widget_cf31ba81" class="lw_widget_pagination lw_widget_clean_markup">
  <div class="lw_events_day">
    <h4 class="lw_events_header_date">Monday, Aug. 25</h4>
    ...
  </div>
</div>

(where … is each event)

For the header date, is there a way to change what heading element it uses? It’s currently H4, which in our setup means H3 is getting skipped.

Hi there,

Thanks for writing – I see what you mean, yes right now LiveWhale just uses h4s for those date headers. We’ll put in a roadmap request to make that customizable the same way that widget headers currently are.

In the meantime, one could use an onOutput custom module handler to target /live/widget/XXX URL requests and do a find-and-replace for the <h4 class="lw_events_header_date">Monday, Aug. 25</h4> to replace the h4s with something else.

Karl

Glad there’s an alternative. Looking forward to the customization option. Thank you!