In the shortcodes.php file, go to the line that it lists as having the error. It should read:
if( empty(get_the_excerpt()) ) {
If you are using a PHP version prior to 5.5 (from what I’m experiencing), change that line to:
if(get_the_excerpt()== false) {
This brought my site back removing the error.