Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi,

    Where are you adding the tag? In one of the formatting tabs or in the title box on the Add / Edit Event page?

    Thread Starter daniego

    (@daniego)

    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.

    Thread Starter daniego

    (@daniego)

    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

    Plugin Support angelo_nwl

    (@angelo_nwl)

    you can try something like

    <a href="#_EVENTURL">#_EVENTNAME</a>

    in your events formatting section

    Thread Starter daniego

    (@daniego)

    Excellent Angelo!!!
    I replace
    <div class="titolorulloeventi">#_EVENTLINK</div>

    with

    <div class="titolorulloeventi">#_EVENTNAME</div>

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Event title tag ignored’ is closed to new replies.