I have an existing module, which I display from an article by using {loadposition custom_position}. The article is linked to a menu item. I want to be able to set a customized page title from this module, overwriting the page title set by the menu item.
I tried using
$document = JFactory::getDocument();
$document->setTitle('Set your title here');
But it does not set the page title.
Is it possible to set the page title from within a module, or can it only be done within a component.