I’m exactly looking for a solution like that. Following this topic.
Same request as after a while, the images are no more displayed but clearing the cache solves the problem.
Hello,
I have same problem.
Can you help me ?
Thanks
I have made a temporary solution by using a scheduled task on my computer that opens this page in Chrome everyday: https://www.website.com/wp-admin/admin.php?page=flow-flow-admin
Then with the Chrome plugin Tampermonkey it automatically executes the Rebuild feed action (and closes the window after 10s):
(function() {
'use strict';
setTimeout(function(){
document.querySelector("tr[data-network='facebook'] .feed-dropdown-menu li[data-action='cache']").click();
}, 2000);
setTimeout(function(){
window.close();
}, 10000);
})();
The match to execute this script in Tampermonkey is:
// @match */wp-admin/admin.php?page=flow-flow-admin