emails
2 years ago
global
6 years ago
receipt
7 years ago
single-give-form
6 years ago
email-login-form.php
6 years ago
history-donations.php
4 years ago
payment-processing.php
6 years ago
shortcode-donor-wall.php
1 year ago
shortcode-form-grid.php
1 year ago
shortcode-goal.php
2 years ago
shortcode-login.php
6 years ago
shortcode-profile-editor.php
6 years ago
shortcode-receipt.php
2 years ago
shortcode-register.php
8 years ago
shortcode-totals-progress.php
6 years ago
single-give-form.php
6 years ago
payment-processing.php
24 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Give Payment Processing Message |
| 4 | */ |
| 5 | ?> |
| 6 | <div id="give-payment-processing"> |
| 7 | <?php |
| 8 | Give_Notices::print_frontend_notice( |
| 9 | sprintf( |
| 10 | /* translators: %s: success page URL */ |
| 11 | __( 'Your donation is processing. This page will reload automatically in 8 seconds. If it does not, click <a href="%s">here</a>.', 'give' ), |
| 12 | give_get_success_page_uri() |
| 13 | ), |
| 14 | true, |
| 15 | 'success' |
| 16 | ); |
| 17 | ?> |
| 18 | <span class="give-loading-animation"></span> |
| 19 | <script type="text/javascript">setTimeout(function () { |
| 20 | window.location = '<?php echo give_get_success_page_uri(); ?>'; |
| 21 | }, 9000); |
| 22 | </script> |
| 23 | </div> |
| 24 |