Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Giorgio

    (@kmgiorgio)

    Thx!

    Thread Starter Giorgio

    (@kmgiorgio)

    Hello,
    I solved in the meantime by opening the file:
    /views/public.php

    In line 253, i changed from:

    function isLocalStorageNameSupported() {
    		var testKey = 'test', storage = window.sessionStorage;
            try {
                storage.setItem(testKey, '1');
                storage.removeItem(testKey);
                return true;
            } catch (error) {
                return false;
            }
        };

    To:

    function isLocalStorageNameSupported() {
    		return false;
    		
            var testKey = 'test', storage = window.sessionStorage;
            try {
                storage.setItem(testKey, '1');
                storage.removeItem(testKey);
                return true;
            } catch (error) {
                return false;
            }
        };

    In any case I bought the PRO version and always the same exception.

    Waiting to fix the bug, so I have disabled the cache.

    Thread Starter Giorgio

    (@kmgiorgio)

    I hope they solve it soon, because otherwise I should find another plugin.

    Thread Starter Giorgio

    (@kmgiorgio)

    Version updated to 3.0.81, but there are still issues with Chrome and Edge.

    public.js:1 Uncaught TypeError: Cannot read property 'length' of undefined
        at Object.buildStreamWith (public.js:1)
        at (index):260
        at i (jquery.js?ver=1.12.4:2)
        at Object.add [as done] (jquery.js?ver=1.12.4:2)
        at Array.<anonymous> ((index):258)
        at i (jquery.js?ver=1.12.4:2)
        at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2)
        at Object.<anonymous> (jquery.js?ver=1.12.4:2)
        at i (jquery.js?ver=1.12.4:2)
        at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2)

    The strange thing is that the error appears after the page is refreshed. The first time the plugin seems to work correctly, but when you refresh the page you receive that error message in the console.

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