SublimeVideo WordPress Jetpack Infinite Scroll?
-
SublimeVideo’s WordPress plugin works almost flawlessly with my theme and plugins except for one issue:
When I enable Jetpack plugin’s infinite scroll feature and scroll down, the newly loaded posts with videos just show normal, embedded html5 without the SublimeVideo javascript fanciness.
I understand this is a common issue with infinite scroll where one must “callback” various functions to apply to posts which have been newly loaded. So I tried to follow the Jetpack plugin’s instructions to solve that issue that here:
https://jetpack.me/support/infinite-scroll/#javascript-events
I also consulted SublimeVideo’s documentation to try and find out what function to “callback”:
https://docs.sublimevideo.net/javascript-api/usage
Here’s what I came up with. It’s from my theme’s header.php, before <body>:
<script>
jQuery(document).ready(function(){// Re-intiate javascripts after infinite scroll
jQuery( document.body ).on( ‘post-load’, function () {
// Sublime Video
sublime.load();
} );});
</script>The same block of code has worked with other callbacks, so I think I must just be using the wrong sublime video function?
- The topic ‘SublimeVideo WordPress Jetpack Infinite Scroll?’ is closed to new replies.