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