Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello @sermalefico

    Thank you for sharing your review. As far as I know, you shared your concern on our support channel and we heard you and fixed js and CSS files loading issues in a non Elementor page and we released the fix yesterday (31 March 2020) and it’s working fine now. Now it only loads the JS and CSS files associated with widgets that are being used on that particular page.

    And yes JS and CSS files are huge but those files belong to 3rd party plugins, the good thing is we handled those huge files in a very efficient way. We call it On-Demand Asset Loading, that means we load only what you used. (yes, there was a bug and we fixed it in version 2.7.3 and released on 31 March 2020)

    We have scheduled the extensions control panel plan and it’ll be released soon and we’ll be able to help you in a far better way if you let us know your requirements first.

    Thank you.

    Thread Starter sermalefico

    (@sermalefico)

    Exactly, I’ve already seen the update. Now it seems that everything is correct and much better. The problem I have now is that I take advantage of, for example, the use of isotope that loads happy addons in my custom scripts. But now I can’t do it because it returns errors. Is there a way or hook for me to take advantage of these assets?

    thanks I check my review.

    I’m afraid you cannot use Isotope the way you used to, we had to fix that as per your requirements! Anyway, you can still use Isotope from HappyAddons all you have to do is enqueue Isotope from HappyAddons. Just use the following code and follow the instruction on this page https://developer.www.ads-software.com/reference/functions/wp_enqueue_script/

    
    if (defined('HAPPY_ADDONS_VERSION')) {
        wp_enqueue_script(
    	'jquery-isotope',
    	HAPPY_ADDONS_ASSETS . 'vendor/jquery.isotope.js',
    	[ 'jquery' ],
    	HAPPY_ADDONS_VERSION,
    	true
        );
    }
    

    Thank you

    Thread Starter sermalefico

    (@sermalefico)

    wou! thx a lot!

    Thread Starter sermalefico

    (@sermalefico)

    Another apointment. I have problems with imagesloaded

    $(…).imagesLoaded is not a function

    i need anything more?

    You have to update the dependency. Replace ['jquery'] with the following one

    
    ['jquery', 'imagesloaded']
    

    Thank you

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Awesome plugin!’ is closed to new replies.