• Resolved digibrandteam

    (@digibrandteam)


    I’ve just updated the events calendar but it is returning the following error, please assist?

    Fatal error: Call to undefined function is_embed() in /home/rmycph/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Templates.php on line 148

    Call Stack
    # Time Memory Function Location
    1 0.0002 230728 {main}( ) …/index.php:0
    2 0.0003 234104 require( ‘/home/rmycph/public_html/wp-blog-header.php’ ) …/index.php:17
    3 0.5953 45542200 require_once( ‘/home/rmycph/public_html/wp-includes/template-loader.php’ ) …/wp-blog-header.php:16
    4 0.6060 46137504 apply_filters( ) …/template-loader.php:74
    5 0.6060 46138936 call_user_func_array:{/home/rmycph/public_html/wp-includes/plugin.php:213} ( ) …/plugin.php:213
    6 0.6060 46138968 Tribe__Events__Templates::templateChooser( ) …/plugin.php:213

    https://wordpress.org/plugins/the-events-calendar/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Brian

    (@brianjessee)

    Hi,

    Sorry for the issues you are having. I can help troubleshoot this with you.

    If you are using a Version of WordPress below 4.4 this function is not included. You can update WordPress or add the following to your functions.php of your child theme:

    global $wp_version;
    if( version_compare( $wp_version, '4.4', '<' ) ) {
        if ( ! function_exists( 'is_embed' ) ) {
            function is_embed() { return false; }
        }
    }

    Let us know how that works out.

    Hey there,

    Just want to drop a quick note in here to let you know that The Events Calendar 4.2.1 is about to release any moment and it will include a patch for this issue. Please update and let us know if you continue to hit any trouble.

    Thanks so much for your patience while we worked on this!

    Cheers,
    Geoff

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

The topic ‘Plugin Update ERROR’ is closed to new replies.