Suppose you have a paypal button to collect money or sale product and you want your client to submit Contact form 7 form too. To make that work easy for your client it is wise to redirect your client to paypal payment collection after successful submission of the form. Here is the procedure
- Add this plugins Contact Form 7 Redirection
2. Like the image a new tab “Redirect Settings” will be added
3. Like the Screenshot above you can put the External URL or Paypal url and select “Use External URL”
Instead or redirecting to external url or paypal url if you want to Click Automatically to Paypal Payment button, then use this technique
jQuery(document).ready(function() {
jQuery('button.paypal-button.large').click();
});
please replace this selector button.paypal-button.large with your payment button selector.
If you face issue or need help please do comments in the comments box.