Hi.
When you want to disable the show of the stausblock in Esase Profil Info Checker (http://www.boonex.com/m/Profile_info_checker) when profil infos are 100% than edit the file SasProfileInfoTemplate.php.
Search for
---
$this -> addCss('sas_profile_info.css');
return $this -> parseHtmlByName('field_info.html', $aKeys);
---
and replace it with
---
$this -> addCss('sas_profile_info.css');
if ($iPercent == "100"){
}
else
{
return $this -> parseHtmlByName('field_info.html', $aKeys);
}
----
That's all
Greetz Rappi