Jonatan Bouillon | Posts: 9

How to remove mobile link from signature popup screen

0 votes

Hi,

How can i remove the link that give option to user to sign on mobile?

I have search in the admin site config and in the PackageBuilder and i didn't found the solution.

Some answer told me to remove thoses configuration but it's not working  .WithEnforceCaptureSignature() or .WithHandOverLinkHref(signatureCompleteUrl.AbsoluteUri)
.WithHandOverLinkText(linkText)
.WithHandOverLinkTooltip(linkInfo).

Thanks 

Jonatan

--

return PackageBuilder.NewPackageNamed(packageName)
   .WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings()
       .WithEnforceCaptureSignature()
       .WithoutCaptureText()
       .WithoutInPerson()
       .WithoutLanguageDropDown()
       .WithoutOptOut()
       .WithoutDecline()
       .DisableFirstAffidavit()
       .DisableSecondAffidavit()
       .WithHandOverLinkHref(signatureCompleteUrl.AbsoluteUri)
       .WithHandOverLinkText(linkText)
       .WithHandOverLinkTooltip(linkInfo)
       .WithCeremonyLayoutSettings(CeremonyLayoutSettingsBuilder.NewCeremonyLayoutSettings()
           .WithoutSessionBar()
           .WithoutBreadCrumbs()
           .WithoutGlobalConfirmButton()
           .WithGlobalDownloadButton()
           .WithLogoImageSource("https://mon.saiadnet.qc.ca/Content/images/logoSAI-gauche-img.png")))
   .WithSigner(SignerBuilder.NewSignerWithEmail(courrielUsager)
       .WithFirstName(beneficiaireEnLigneEvent.Prenom)
       .WithLastName(beneficiaireEnLigneEvent.Nom)
       .WithCompany(regimeAbbreviation)
       .WithCustomId(signerId)
       .WithLanguage(isFrCa ? "fr" : "en"))
   .WithDocument(document);


Attachments

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