Hi,
Where are you adding the tag? In one of the formatting tabs or in the title box on the Add / Edit Event page?
In the title box on the Add / Edit Event page
HTML tags like <sup> shouldn’t be used in the post title, which why they’re being stripped out. Best practice would be to just write 8th, 9th, etc.
Simply I edit classes/em-event.php at line 1507
from
$replace = '<a href="'.$event_link.'" title="'.esc_attr($this->event_name).'">'.esc_attr($this->event_name).'</a>';
to
$replace = '<a href="'.$event_link.'" title="'.esc_attr($this->event_name).'">'.$this->event_name.'</a>';
Is possible to add this mod to the next release so that I can update plugin safely?
Thanks
you can try something like
<a href="#_EVENTURL">#_EVENTNAME</a>
in your events formatting section
Excellent Angelo!!!
I replace
<div class="titolorulloeventi">#_EVENTLINK</div>
with
<div class="titolorulloeventi">#_EVENTNAME</div>
Thanks