From looking at SSViewer it is possible to disable the output of Requirements to the template via the 'includeRequirements(true/false)' method - however I can't work out how to access the instance of SSViewer from my controller to be able to set this option.
I've tried things like this within my action:
$viewer = $this->getViewer($this->getAction());
$viewer->includeRequirements(false);
$viewer->process($this->dataRecord);
and it doesn't seem to make any difference... any help would be appreciated.
Thanks.