If Zapier sends a URL to a Webflow link field without 'https://', Webflow treats it as a relative path, causing it to publish incorrectly (e.g., as a subdirectory). Here's how to fix it:
^(?!https?://)
(matches strings not starting with http:// or https://).https://
prepended (though Zapier's Replace tool doesn't support regex groups, so see the workaround below).Insert a Webhooks or Code by Zapier step before the Webflow step.
Choose Code > Run JavaScript.
Input your URL field as a variable (e.g., inputData.url
).
Use this simple logic:
If the URL starts with http://
or https://
, leave it.
If not, prepend https://
.
Example Logic (conceptual, without using raw code):
If URL does not contain '://', then set the output to 'https://' + url
. Use this modified URL in the Webflow action.
https://
prefix.To prevent Webflow from treating plain URLs as subdirectories, ensure Zapier always sends URLs prefixed with 'https://'. Use a Code by Zapier step to detect and correct URLs before passing them to Webflow. This guarantees the link field is interpreted correctly.