• Resolved Ramon Rocha

    (@ramonrocha)


    How do I do to remove https://aggregator.time.ly for Event website?
    It’s returning invalid URL (timeout)

    which change in code constants.php?
    // ===============================
    // = Time.ly redirection service =
    // ===============================
    if ( ! defined( ‘AI1EC_REDIRECTION_SERVICE’ ) ) {
    define( ‘AI1EC_REDIRECTION_SERVICE’, ‘https://aggregator.time.ly/ticket_redirect/’ );
    }

    which change in code class-a1ec-event.php?
    public function get_nonloggable_url( $value ) {
    if (
    empty( $value ) ||
    false === strpos( $value, AI1EC_REDIRECTION_SERVICE )
    ) {
    return $value;
    }
    $decoded = json_decode(
    base64_decode(
    trim(
    substr( $value, strlen( AI1EC_REDIRECTION_SERVICE ) ),
    ‘/’
    )
    ),
    true
    );
    if ( ! isset( $decoded[‘l’] ) ) {
    return ”;
    }
    return $decoded[‘l’];
    }

    Using version 1.10.9-standard

    P.S: I do not intend to update, because version 1.10.9 it’s OK for me (no errors) and I see a lot of complaints in the new releases

    Thanks and I’m sorry by my poor english!

    https://www.ads-software.com/plugins/all-in-one-event-calendar/

Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘aggregator.time.ly’ is closed to new replies.