From 4bef3530a4ecd32868f3933b133707b0fa67a8b0 Mon Sep 17 00:00:00 2001 From: Santiago Mendoza Ramirez Date: Thu, 17 Jun 2021 13:25:58 -0500 Subject: [PATCH] Send empty identity_verification to settings This will fix this issue: #116 --- bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.php b/bootstrap.php index 1a21f95..ad44d9c 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -504,7 +504,7 @@ function render_intercom_options_page() wp_die('You do not have sufficient permissions to access Intercom settings'); } $options = get_option('intercom'); - $settings_page = new IntercomSettingsPage(array("app_id" => $options['app_id'], "secret" => $options['secret'])); + $settings_page = new IntercomSettingsPage(array("app_id" => $options['app_id'], "secret" => $options['secret'], "identity_verification" => '')); echo $settings_page->htmlUnclosed(); wp_nonce_field('intercom-update'); echo $settings_page->htmlClosed();