can you confirm you have version 2.21?
and if you can send a link to the form, that would help.
Hello !
>> can you confirm you have version 2.21?
YES
>> and if you can send a link to the form, that would help.
https://www.schillinger-iexchange.com/idirectory-shop-one/
But maybe the following cf7 config content helps you:
—————————————
<strong>Form Page 1:</strong>
<p>Company :<br />[text Company] </p>
<p>Title* :<br /> [select* Title placeholder "required..." "Mr." "Mrs."]</p>
<p>First name* :<br />[text* Firstname placeholder "required..."]</p>
<p>Last name* :<br />[text* Lastname placeholder "required..."]</p>
... and more code ...
<strong><p>[submit "Next Page ->"]</p>
[multistep "1-2-http://www.schillinger-iexchange.com/idirectory-shop-pay-now/"]</strong>
—————————————
<strong>Form Page 2:</strong>
Company : [multiform "Company"]
Name: [multiform "Title"] [multiform "Firstname"] [multiform "Lastname"]<br />
... and more code ...
<p><br />[submit "Buy now..."]</p>
<p><br />[previous]</p>
[multistep "2-2"]
—————————————
Additional Settings from Page 2:
on_sent_ok: “location=’https://www.paypal.com/’;”
The redirection to this URL does not work anymore !!
The page depends on the send button
ALL THIS FELDS IN SEND MAIL (NOT IN HTML-PAGE!) ARE WITHOUT CONTENT!
thank’s
Ralph
I believe the on_sent_ok in additional settings will no longer work. Instead put it in the multistep tag like this:
[multistep "2-2-https://www.paypal.com/"]
For sending email, you’ll need to include the fields from the first page in the Mail tab. This is explained in the 4th item in the FAQ. Something like this:
[Company]
Hello!
>> [multistep “2-2-https://www.paypal.com/”]
This only works if a 3 page is used.
[multistep “2-3-https://www.paypal.com/”]
It does not work with &variables in the URL.
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XXXX
The Char “&” or “&” are decoded to “&”.
Result: Paypal Error message
>> For sending email, you’ll need to include the fields from the first page in the Mail tab. This is explained in the 4th item in the FAQ. Something like this: [Company]
The generated e-mail does not send the text of the first page. Only the CF7 placeholders! Text excerpt from the e-mail:
—
Name: [Title] [Firstname] [Lastname]
AGB-OK-Button: *
B2B-OK-Button: *
—
This has worked before the updates everything to 100% error-free.
Thank you for your fast and good support
verry best regards
Ralph
>> [multistep “2-2-https://www.paypal.com/”]
should work. The code will redirect regardless of what step it is on.
For the url, could you try replace line 478 in contact-form-7-multi-step-module/contact-form-7-multi-step-module.php in your plugins folder from this:
$js .= sprintf('location.replace("%1$s");', esc_url( $url ) );
to this:
$js .= sprintf('location.replace("%1$s");', htmlspecialchars_decode( esc_url( $url ) ) );
That should solve the “&” problem.
As for the mail problem I cannot say what isn’t working with that. No one else has reported an issue with that and I cannot find anything wrong.
You could try revert back to Contact Form 7 version 4.7 and this plugin version 2.1, and also disable other plugins and use the default wordpress theme. There are a lot of moving parts that could be causing your forms to no longer be working.
VERRY GOOD AND FAST SUPPORT !!!!
THANKS FOR YOUR UPDATE V 2.23 !!
VERRY BEST REGARDS!
RALF
did you resolve your mail problem? if you did, could you share it for others?