• Resolved NF

    (@nanasflowers)


    Hello,

    I am having difficulty excluding a script from JS deferral (JS defer is stopping it from loading at checkout).

    Script:

    <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAAQnz1kJ9fG-wqQ6IVDORsA9MPR5cYj9w&language=en&libraries=places&v=weekly&ver=1.0.9" id="aafw-googleapis-js"></script>

    I have tried the following to no avail:

    add_filter( 'sgo_js_async_exclude', 'js_async_exclude' );
    function js_async_exclude( $exclude_list ) {
        $exclude_list[] = 'aafw-googleapis-js';
        $exclude_list[] = 'maps.googleapis.com';
    
        return $exclude_list;
    }

    Probably making a very stupid mistake, if anyone can point out the obvious for me that would be very useful.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter NF

    (@nanasflowers)

    Plugin in question that I am trying to get working is: https://wordpress.org/plugins/autocomplete-address-and-location-picker-for-woocommerce/

    I have been able to exclude the JS combination successfully, however cannot get it working unless JS deferral is turned off at the moment.

    Plugin Support Vladimir Trandev

    (@vtrandev)

    Hello @nanasflowers,

    For more information of how to properly exclude certain script/s and to find its handler, please check the following thread:

    https://wordpress.org/support/topic/how-to-use-sg-optimizers-filters-procedure/

    As for resources loaded from an external source, you can exclude external script from being combined using the below filter:

    add_filter( 'sgo_javascript_combine_excluded_external_paths', 'js_combine_exclude_external_script' );
    function js_combine_exclude_external_script( $exclude_list ) {
        $exclude_list[] = 'script-host.com';
    
        return $exclude_list;
    }

    In case, you have added the script as an inline script, you can exclude the inline script from being combined using:

    add_filter( 'sgo_javascript_combine_excluded_inline_content', 'js_combine_exclude_inline_script' );
    function js_combine_exclude_inline_script( $exclude_list ) {
        $exclude_list[] = 'first few symbols of inline content script';
    
        return $exclude_list;
    }

    Regards,
    Vladimir

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Exclude JS Script From Deferral’ is closed to new replies.