order-processing.php
11 lines
| 1 | <?php /** @global $order_success_page */ ?> |
| 2 | <div id="ppress-payment-processing"> |
| 3 | <p><?php echo apply_filters('ppress_payment_processing_message', sprintf(__('Your order is processing. This page will reload automatically in 8 seconds. If it does not, click <a href="%s">here</a>.', 'wp-user-avatar'), esc_url($order_success_page)), $order_success_page); ?> |
| 4 | <script type="text/javascript">setTimeout(function () { |
| 5 | window.location = '<?php echo $order_success_page; ?>'; |
| 6 | }, 8000); |
| 7 | </script> |
| 8 | </div> |
| 9 | |
| 10 | <?php do_action('ppress_payment_processing'); ?> |
| 11 |