Fix Series’s Single Video Page doesn’t load fully
Currently, some clients might meet this trouble when loading Single Video Page from Series page, it won’t be loaded fully.
This FAQ can help you to fix this issue step by step.
- Find and open {root}/wp-content/plugins/cactus-video/video-data-functions.php
- Go to line 382, you should find this line
unset($args['date_query']['after']);
- Replace that line with these lines
if( isset( $args['date_query']['after'] ) ){ unset($args['date_query']['after']); }
- Save change and the Single Video Page from Series should work correctly again.