• Resolved yuuffy

    (@yuuffy)


    Hello Elementskit-Team,

    We currently have loading speed issues with your addon and the specific elementskit fonts. Is it possible to dequeue those fonts and not load them at all? (We have our own fonts).

    If so could you redirect me to the specific repository or do you have a snippet so we dont have to change it over and over when updating your plugin?

    Thanks for your help,
    Nicolas

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi @yuuffy ,

    To dequeue or disable loading our ElementsKit_Lite fonts you can add this below code snippets to your functions.php

    // ElementsKit Lite font dequeue code
    function remove_ekiticons() {
    	wp_dequeue_style('elementor-icons-ekiticons');
    }
    add_action('wp_enqueue_scripts', 'remove_ekiticons', 99);
    
    function remove_ekiticons_font($font) {
    	unset($font['ekiticons']);
    	return $font;
    }
    add_filter('elementor/icons_manager/additional_tabs', 'remove_ekiticons_font', 99);

    Let us know the update and we are always here to help you.

    Regards

    Hi @yuuffy ,

    We haven’t heard from you since the last reply. Have your issue been fixed yet? We’re still here to assist you.

    Regards

    Thread Starter yuuffy

    (@yuuffy)

    Hey Ahmed,

    I’ll try this out and see if it works.

    Thanks for the quick reply 🙂

    Hi @yuuffy ,

    If this plugin looks good to you, may be you can help us by giving a 5 star on ww.wp.xz.cn?

    https://ww.wp.xz.cn/support/plugin/elementskit-lite/reviews/

    We’re working so hard to make this plugin more and more useful to our valuable clients like you, and a 5 star will really help us to grow on the market. 🙂

    Thanks

    Can this be added as an option to plugin please to not mess with editing functions.php file?

    elementskit-lite/modules/controls/assets/fonts/elementskit.woff?y24e1e being 433KB

    Change of name from ‘Lite’ to ‘Heavy’ maybe? 😉

    Hey @tipat ,

    Thanks for your suggestion. We are working on this and soon we will add a switch control to disable the font from loading. Till then stay with us and stay tuned.

    Regards

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

The topic ‘Remove/Disable Fonts?’ is closed to new replies.