Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Looks like there’s another if statement you have to modify to fix the Location text / url. Try adding another empty string check where that URL is constructed:

    Line 793:
    if(isset($event[‘event_loc’]) && isset($event[‘event_loc_url’]) && $event[‘event_loc_url’] != “”)

    And just so you know I am not the plugin developer…just a user who had the same problem:)

    in simple-events-calendar.php there is some incorrect logic when determining whether to display the link:

    On line 803 instead of :

    if(isset($event[‘event_url’]) ) { $evt_url = ‘<div…

    change to this to check for empty string:

    if(isset($event[‘event_url’]) && $event[‘event_url’] != “”) { $evt_url = ‘<di

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