If you disable performance options in Theme Options, you can then edit the /js/functions.js file, and change the bottom 5 lines to this:
window.onpageshow = function(event) {
if ( event.persisted && jQuery('body').hasClass("sf-preloader") ) {
window.location.reload();
}
};
– Ed