Templates
5 years ago
defaultFormDonationProcessing.php
6 years ago
defaultFormReceiptTemplate.php
6 years ago
defaultFormTemplate.php
6 years ago
defaultLoadingView.php
6 years ago
defaultRedirectHandlerTemplate.php
6 years ago
defaultFormDonationProcessing.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Payment confirmation view. |
| 4 | * |
| 5 | * @since 2.7.0 |
| 6 | */ |
| 7 | ?> |
| 8 | <!DOCTYPE html> |
| 9 | <html <?php language_attributes(); ?>> |
| 10 | <head> |
| 11 | <meta charset="utf-8"> |
| 12 | <title><?php _e( 'Redirecting...', 'give' ); ?></title> |
| 13 | </head> |
| 14 | <body> |
| 15 | <script type="text/javascript"> |
| 16 | setTimeout(function () { |
| 17 | window.location = '<?php echo give_get_success_page_uri(); ?>'; |
| 18 | }, 5000); |
| 19 | </script> |
| 20 | </body> |
| 21 | </html> |
| 22 |