I want only users at a certain userlevel to have access to the Advanced Search and therefore to prevent the advanced search for certain userlevels. However, all users can have the basic search. How is it possible to restrict advanced searching based on userlevels? I am using phpmaker 2019.0.10
You can use the Page_Render server event to hide the advanced search button. For example:if (…)
$this->SearchOptions[“advancedsearch”]->Visible = FALSE;