| 1 |
<?php |
| 2 |
/** |
| 3 |
* Give Payment Processing Message |
| 4 |
*/ |
| 5 |
?> |
| 6 |
<div id="give-payment-processing"> |
| 7 |
<?php |
| 8 |
Give()->notices->print_frontend_notice( sprintf( |
| 9 |
/* translators: %s: success page URL */ |
| 10 |
__( 'Your donation is processing. This page will reload automatically in 8 seconds. If it does not, click <a href="%s">here</a>.', 'give' ), |
| 11 |
give_get_success_page_uri() |
| 12 |
), true, 'success' ); |
| 13 |
?> |
| 14 |
<span class="give-loading-animation"></span> |
| 15 |
<script type="text/javascript">setTimeout(function () { |
| 16 |
window.location = '<?php echo give_get_success_page_uri(); ?>'; |
| 17 |
}, 9000); |
| 18 |
</script> |
| 19 |
</div> |