# give/4.16.9/templates/payment-processing.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 24 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/templates/payment-processing.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/templates/payment-processing.php
- Modified: 2020-03-31T00:14:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.9/code/templates/payment-processing.php#L10-L20`.

```php
<?php
/**
 * Give Payment Processing Message
 */
?>
<div id="give-payment-processing">
	<?php
	Give_Notices::print_frontend_notice(
		sprintf(
			/* translators: %s: success page URL */
			__( 'Your donation is processing. This page will reload automatically in 8 seconds. If it does not, click <a href="%s">here</a>.', 'give' ),
			give_get_success_page_uri()
		),
		true,
		'success'
	);
	?>
	<span class="give-loading-animation"></span>
	<script type="text/javascript">setTimeout(function () {
			window.location = '<?php echo give_get_success_page_uri(); ?>';
		}, 9000);
	</script>
</div>

```
