The exact error for your reference was:
The plugin stops-core-theme-and-plugin-updates/Function.php has been deactivated due to an error: Plugin file does not exist.
Hey Maruti,
Thanks for your reply. Managed to work out a fix.
In content-single.php I updated the title (everything in <h1></h1>) to the following:
<h1 class="entry-title"><?php
$thetitle = $post->post_title;
$getlength = strlen($thetitle);
$thelength = 250;
echo substr($thetitle, 0, $thelength);
if ($getlength > $thelength) echo "";
?></h1>
Hope that helps someone else out.
– ROI Marketing