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.

  1. Find and open {root}/wp-content/plugins/cactus-video/video-data-functions.php
  2. Go to line 382, you should find this line
    unset($args['date_query']['after']);
  3. Replace that line with these lines
    if( isset( $args['date_query']['after'] ) ){
        unset($args['date_query']['after']);
    }
  4. Save change and the Single Video Page from Series should work correctly again.