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.
Exo
(@richardshea)
Agreed, they fixed the bug I reported – but clearly didn’t test it after a refresh.
Mine too works first time the page is loaded, but any refresh causes it to fail – and browser caching means some users never get to see the feed work again during a session!
I’ve actually got Version 3.0.81 installed, but that last revision was for WP 5.0.
Thread Starter
Giorgio
(@kmgiorgio)
I hope they solve it soon, because otherwise I should find another plugin.
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.
Hi, we released updates for lite and pro version both. Thank you very much for the detailed feedback.
Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
In any case I bought the PRO version and always the same exception.
For pro or commercial product support please contact the author directly on their site. This includes any pre-sales topics as well.
As the author is aware, commercial products are not supported in these forums. I am sure they will have no problem supporting you there.