Sure. on the Staff page, I want all the text to appear which is in the article before the Read More.
I can achieve this by removing the following two lines from blog_info.php
$this->item->introtext = substr(strip_tags($this->item->introtext), 0, 200);
$this->item->introtext = substr($this->item->introtext, 0, strrpos($this->item->introtext, ' ')) . " ...";
With those two lines, the Staff page renders exactly how I want.
However, it then applies throughout the rest of the site. For the rest of the site, I want it to stay as it currently is.
So I need a version of blog_info.php with those two lines removed to apply to the menu item /Home/Staff.
Hope this makes sense. Please don't hesitate if you have more questions.
Thank you very much for your assistance. Much appreciated.