3
i think i solved issue a.
First you have to make the URL field not required
go to modules/mastop_go2/include/go2.form.inc.php
change line 26 from
$go2_form->addElement(new XoopsFormText(MGO_ADM_GO2_30_LINK, "go2_30_link", 30, 150, $go2_classe->getVar("go2_30_link")), true);
to
$go2_form->addElement(new XoopsFormText(MGO_ADM_GO2_30_LINK, "go2_30_link", 30, 150, $go2_classe->getVar("go2_30_link")), false);
next go to modules/mastop_go2/include/mgo_go2_go2.class.php
change line 57 from
return XOOPS_URL."/modules/".MGO_MOD_DIR."/go2.php?tac=".$this->getVar($this->id);
to
if ($this->getVar("go2_30_link") == '') {
}
else
{
return XOOPS_URL."/modules/".MGO_MOD_DIR."/go2.php?tac=".$this->getVar($this->id);
}
So if you dont want a link to your spotlite just leave the URL field empty
still tryin to get the stop when mouse over feature