Support » Themes and Templates » Bugfix for Calotropis. `Fatal error: Call to undefined function is_multisite()`

  • Hi.

    If you’re using Calotropis 1.2.3 under wordpress before 3.0, there’s a bug in the footer. The bug will display thing like this:
    Fatal error: Call to undefined function is_multisite() in /home/***/***/wp-content/themes/calotropis/footer.php on line 10

    To fix it, you can either upgrade to newer Calotropis (1.2.4 or 1.2.5) or upgrade to WordPress 3.0.

    Calotropis 1.2.4 or 1.2.5 is not in the official Theme Directory yet because the very long queue in the reviewing process by WordPress reviewing team. For now, you can download from here.

    You can fix it manually by replacing footer.php on line 10:

    <?php if (is_multisite()):global $current_site; ?>

    with this line:

    <?php if (function_exists('is_multisite') && is_multisite()):global $current_site; ?>

    To get quickest and best support, please go to Calotropis homepage.

  • The topic ‘Bugfix for Calotropis. `Fatal error: Call to undefined function is_multisite()`’ is closed to new replies.