Hi Paul,
our developer has found the problem with the search module:
there was a control for document type before the addHeaderLink that was bloking the render of the module during the apply of options
$doc = \Joomla\CMS\Factory::getDocument();
//$d= new Joomla\CMS\Document\Document();
if($doc->getType()=='html'){
$ostitle = $params->get('opensearchtitle', JText::('MOD_SEARCH_SEARCHBUTTONTEXT') . ' ' . $app->get('sitename'));
$doc->addHeadLink(
JUri::getInstance()->toString(array('scheme', 'host', 'port'))
. JRoute::('&option=com_search&format=opensearch&Itemid=' . $mitemid), 'search', 'rel',
array(
'title' => htmlspecialchars($ostitle, ENT_COMPAT, 'UTF-8'),
'type' => 'application/opensearchdescription+xml'
)
);
}
We are still faceing the "save changes" issue thou.
Thank you for support!
Dave - Exacta Group