Is that possible to config PloneFormGen to do a form action?

i.e.
form action='https://www.paydollar.com/b2c2/eng/payment/payForm.jsp' method='post' name='payFormCcard' target='_blank'

I know this question may not relate to plone, but I hope someone can point me to some reference materials.

Thanks you.

Yes, have a look in https://docs.plone.org/working-with-content/managing-content/ploneformgen/getting_started.html#overrides

Thanks you...

I now know which part I need to check, is that possible to point me to a website who have sample codes etc, so I can learn that easier?

I assume you need to 'pass something' from the foremen form to 'pay dollar'

Sometimes, one can just construct an URL, like
https://www.paydollar.com/b2c2/eng/payment/payForm.jsp?something=bla&somethingelse=blabla

But since this is about payment it is probably insecure.

So you probably need to write a python script, or maybe you can use something like:

1 Like

Thanks, will take a look!