Hello Franky,
Great work!! I want to say this is the most enjoyable plug-in I have worked with since starting with Wordpress :) thank you!!
I have a small enhancement might be useful for someone
Because the placeholder #_LINKEDNAME does not distinguish between normal event or an event with an external link pointing to an external URL and I really hate my visitors to leave my website too soon I replaced the following in events-manager.php :
} elseif (preg_match('/#_LINKEDNAME$/', $result)) {
$event_link = eme_event_url($event);
$replacement="<a href='$event_link'>".eme_trans_sanitize_html($event['event_name'])."</a>";
with this:
} elseif (preg_match('/#_LINKEDNAME$/', $result)) {
$event_link = eme_event_url($event);
if($event['event_url'] != '')
$replacement="<a href='$event_link'>".eme_trans_sanitize_html($event['event_name'])."</a>";
else
$replacement="<a href='$event_link'>".eme_trans_sanitize_html($event['event_name'])."</a>";
now when you are using the External link feature, the link will open in a new window otherwise will open in the same window in your browser.
cheers!
Samo