>our line
>$output = "<ul class='eme-no-events'><li>" . get_option('eme_no_events_message' ) . "</li></ul>";
Yes it’s just fine if you see it as line itself.
But if you use the widget to display the evemts the result is
<ul>
<ul>
<li>
…..
</li>
</ul>
</ul>
because the widget itself seems to include an additiona <ul>
.
validator.w3.org means this is not the way it should be.
I use “Events Manager Extended Version 3.3.5” whic is the version i got from Wodpress plugin dir…
my line
$output = "<li class='eme-no-events'>" . get_option('eme_no_events_message' ) . "</li>";
builds
<ul>
<li>
…..
</li>
</ul>
The <ul> ... </ul>
comes from the widget.
best regards