• Resolved fabienlege

    (@fabienlege)


    It seem that your plugin in her last version (1.6.1) making elementor failling to load if you try to edit a page where you use a graphina widget.

    It seem to be due to a typo in the “pdfmake.min.js” loaded via a cdn for the “data_table_list” widget.

    here a screen of my js console : https://pasteboard.co/Cwr76rDNaER0.png
    The responsible file is loaded at line 177 of file “/plugins/graphina-elementor-charts-and-graphs/elementor/class-graphina-charts-for-elementor-public.php”

    Since I don’t use this widget, i’ve disabled this file loading with bellow code in my function.php to prevent the bug but it’s not a long term acceptable solution

    
    
    /**
     * Dequeing pdfmake script issued of graphina plugin since it make Elementor completely down
     */
    function wpdocs_dequeue_script() {
            wp_dequeue_script( 'graphina_datatable_pdf' );
            wp_dequeue_script( 'graphina_datatable_font' );
    }
    add_action( 'wp_print_scripts', 'wpdocs_dequeue_script', 100 );

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Graphina make Elementor completely down’ is closed to new replies.