How to remove mobile link from signature popup screen
Thursday, February 12, 2026 at 01:06pmHi,
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);