You can manually email service prices and create a form in Webflow that redirects users to a bank payment gateway with a pre-filled amount, but this setup requires specific capabilities from the bank’s payment provider. Webflow doesn't support native dynamic payment forms with custom logic, but you can configure it using standard functions.
Most bank payment gateways (e.g., Stripe, PayPal, or local banking systems) allow for URL parameters to pre-fill amount values.
In your form’s Form Submission settings, set a redirect URL that includes the amount parameter, like:
https://yourbankgateway.com/pay?amount=XXX
Use custom JavaScript embedded in Webflow to dynamically append the amount value from the form to the redirect URL.
Go to Page Settings > Before
tag, and include a script that retrieves the form value and redirects users properly.
Example: You can use JavaScript to read the amount input and redirect them to your custom payment link. (Avoid displaying code here per guidelines, but the general approach involves intercepting the form submit event.)
The bank’s URL format must support dynamic query parameters, such as ?amount=1234
.
You can manually send service prices through email and set up a Webflow form where clients enter the amount and are redirected to a bank’s payment page with that amount pre-filled—if the bank gateway URL supports dynamic query parameters. Custom JavaScript is needed to handle the dynamic redirect after form submission. Backend-based gateways may require more advanced integration beyond Webflow's native capabilities.