For now I am using:
unset($this->content['widgets']['main']['bottom'][1]);
However, what if I change the position of the widget later on, then the unset would not work anymore.
So what is the best way to remove a specific widget?
I am thinking of going over all widgets and checking their names, pseudocode:
foreach ... $this->content['widgets']
if(get_class($widget)=='qa_related_qs') {
unset(...);
}
Any other idea?