InfinitySigner

Hide Download links, show custom Finished text

0 votes
Our integration has the browser embedded within our app, and with it we have a fairly stripped-down look in the header area of the signing session. We would like to finish our signing with these 2 extra things I can't figure out: 1. suppress the Download links. There are 3 links displayed after signing is complete: "Download this document" in the navigation bar (green) and 2 more in the upper right corner (Download, and Download All files). We would like to turn off all 3 links. We fetch the signed documents behind the scenes. 2. We would like to include customer text somewhere in the header once signing is complete, such as in the green nav bar where it says "This package is complete." we would like to add additional text, like "Please Review, and then click the [OK All Signatures Complete] button at the bottom of this form." to help the user understand what we want them to do. I have included a graphic image of the 3 download links, which also shows the green nav bar I am referring to. The JSON used to strip-down the header is as follows: { "roles":[ > ], "documents":[ { "approvals":[ > ], "name":">", "id":"document1" } ], "name":"> Package", "type":"PACKAGE", "language":"en", "emailMessage":"", "description":"> Package", "autocomplete":true, "status":"DRAFT", "settings":{ "ceremony":{ "inPerson":true, "optOutButton":false, "optOutReasons":["Decline terms."], "hideLanguageDropdown":true, "hidePackageOwnerInPerson":true, "disableFirstInPersonAffidavit":true, "disableSecondInPersonAffidavit":true, "declineButton":false, "hideWatermark":true, "hideCaptureText":false, "disableDownloadForUncompletedPackage":true, "layout": { "navigator": true, "footer": null, "brandingBar": null, "header": null } } } } We want to keep the header area fairly empty, and adding logic to the "header" JSON initially gave me problems until I ended up with "null", so I'm not sure how to disable those links. Thank you! -Joe

Attachments
Approved Answer

Reply to: Hide Download links, show custom Finished text

1 votes
Hi Joe, Sorry that there was some slightly mistake in the JSON, below is the corrected one:
{
  "settings": {
    "ceremony": {
      "layout": {
        "header": {
          "globalActions": {
            "download": false,
            "hideEvidenceSummary": true
          },
          "sessionBar": false,
          "titleBar": {
            "title": false,
            "progressBar": false
          }
        }
      },
      "declineButton": false,
      "disableDownloadForUncompletedPackage": true,
      "hideLanguageDropdown": true,
      "optOutButton": false,
      "documentToolbarOptions": {
        "downloadButton": false
      }
    }
  }
}
"documentToolbarOptions" node should be under "layout", now it should work as expected. Duo

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Reply to: Hide Download links, show custom Finished text

1 votes
Hi Joe, For the first question, below settings JSON works to remove the three download links/buttons:
{
  "settings": {
    "ceremony": {
      "layout": {
        "header": {
          "globalActions": {
            "download": false,
            "hideEvidenceSummary": true
          },
          "sessionBar": false,
          "titleBar": {
            "title": false,
            "progressBar": false
          }
        }
      },
      "declineButton": false,
      "disableDownloadForUncompletedPackage": true,
      "hideLanguageDropdown": true,
      "optOutButton": false,
      "documentToolbarOptions": {
        "downloadButton": false
      }
    }
  }
}
Duo

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Reply to: Hide Download links, show custom Finished text

0 votes
For the second question, you can contact our support at [email protected] to have UI messages modified, it's only available in your account level settings. Duo

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Reply to: Hide Download links, show custom Finished text

0 votes
Duo - Thank you, using your supplied changes, now 2 of the 3 links were removed, which is great! There is still one left, in the green bar (uploaded image) next to where it says "This package is complete.". I thought the JSON for documentToolbarOptions would do that, but it didn't seem to have that effect. JSON used in the settings segment: "settings":{ "ceremony":{ "inPerson":true, "optOutButton":false, "optOutReasons":["Decline terms."], "hideLanguageDropdown":true, "hidePackageOwnerInPerson":true, "disableFirstInPersonAffidavit":true, "disableSecondInPersonAffidavit":true, "declineButton":false, "hideWatermark":true, "hideCaptureText":false, "disableDownloadForUncompletedPackage":true, "layout": { "navigator": true, "footer": null, "brandingBar": null, "header": { "globalActions": { "download": false, "hideEvidenceSummary": true }, "sessionBar": false, "titleBar": { "title": false, "progressBar": false } } } }, "documentToolbarOptions": { "downloadButton": false } } Maybe I have something else missing? -Joe

Attachments

Reply to: Hide Download links, show custom Finished text

0 votes
Duo - That was it. Thank you VERY Much for helping me! -Joe

Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off