For the complete documentation index, see llms.txt. This page is also available as Markdown.

Enable or Disable Surveys

API reference for enabling or disabling Luciq surveys entirely. Stops every survey from showing, including manually targeted ones.

If you would like to disable the surveys from showing in general, including manual targeting surveys, you can do so using this API.

Surveys.enabled = false;
[LCQSurveys setEnabled:NO];
// Enable
Surveys.setState(Feature.State.ENABLED);
// Disable
Surveys.setState(Feature.State.DISABLED);
// Enable
Surveys.setState(Feature.State.ENABLED)
// Disable
Surveys.setState(Feature.State.DISABLED)
Surveys.setEnabled(false);
Surveys.setEnabled(false);

Last updated