Please consider upgrading isotope.js

Support Forums for LiveMesh Themes & Plugins Forums Agile Theme Support Please consider upgrading isotope.js

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #26191
    babaLucas
    Participant

    I’ve been having issues with a popular calendar plugin ~ The Events Calendar and their PRO paid version on a website running Agile 4.4. They were able to point out it’s the isotope version conflict.

    The issue was that the calendar was showing no events in photo view.

    I’ve uploaded the conflict shown in Google Chrome Dev Tools.

    #26203
    Raghavendra
    Moderator

    Sure we will. Thanks for reporting this.

    Our developer who worked on this theme will be on vacation for next one week. So, pls expect an update once he is back. Hope that works for you.

    #26204
    Raghavendra
    Moderator

    Until we issue an update, you can resolve this easily by activating a agile child theme provided with our download bundle.

    Pls modify the child theme functions.php file mo_child_theme_style() function this way –

    /**
     * Load the child theme styles after the parent ones
     */
    function mo_child_theme_style() {
    
        // Child theme styles
        wp_enqueue_style('style-child-theme', get_stylesheet_directory_uri() . '/style.css', array('style-theme', 'style-plugins', 'style-custom'));
    
        wp_dequeue_script('jquery-isotope'); /* Removes the agile theme isotope */
    }
    /* Do note the late firing of this action - 16 number */
    add_action('wp_enqueue_scripts', 'mo_child_theme_style', 16);

    This will remove the theme isotope file and rely on your plugin isotope file to power the theme grids like portfolio etc. Hence you must have the plugin activated or you can activate one of our plugins linked below which has the latest version of isotope and imagesloaded library in it –

    https://wordpress.org/plugins/addons-for-visual-composer/

    #26211
    babaLucas
    Participant

    This seemed to work great. Thanks!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘Agile Theme Support’ is closed to new topics and replies.