• Resolved Dave

    (@davevdoorn)


    Hi,

    Another thing which actually bothers me is that the admin is slowing down when it has to load a page, save a page or edit a page whatever. In my browser I can see that the wp admin is constantly loading unicons.iconscout.com
    Any way to avoid this or load it only on the Directory Listings area?

    Thanks,
    Dave

Viewing 1 replies (of 1 total)
  • Plugin Support Rafiz Sejim

    (@rafizsejim)

    Greetings,

    We are sorry for the trouble.

    Please add the following snippet in your Appearance -> Theme Editor -> functions.php

    add_action( 'admin_enqueue_scripts', function( $screen ) {
    	if ( 'at_biz_dir_page_atbdp-directory-types' !== $screen ) {
    		wp_deregister_style( 'directorist-unicons' );
    	}
    });

    This should resolve the issue.

    Regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Admin slows down because of unicons.iconscout.com’ is closed to new replies.