Skip to main content

How to disable all links in output PDF and turn all links unclickable

Updated over 11 months ago

How to disable all links in output PDF and turn all links unclickable

For Zapier, Integromat and others plugins insert custom profiles into profiles field. For API calls please set value as string in profiles parameter as string.

This profile is injecting custom javascript into HTML code:

{ "CustomScript": "document.querySelectorAll('a').forEach(a => { a.href = '#' });" }
Did this answer your question?