HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/shoetique/wp-content/themes/north-wp/woocommerce/checkout/thankyou.php
<?php
/**
 * Thankyou page
 *
 * @author 		WooThemes
 * @package 	WooCommerce/Templates
 * @version     2.2.0
 */

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

?>
<section class="my_woocommerce_page my_cart">
	<ul id="shippingsteps" class="row full-width-row no-padding">
		<li class="first small-12 medium-6 large-3 columns"><span>1</span><a href="#"><?php _e('Checkout Method', 'north'); ?></a></li>
		<li class="small-12 medium-6 large-3 columns"><span>2</span><a href="#"><?php _e('Billing &amp; Shipping', 'north'); ?></a></li>
		<li class="small-12 medium-6 large-3 columns"><span>3</span><a href="#"><?php _e('Your Order &amp; Payment', 'north'); ?></a></li>
		<li class="small-12 medium-6 large-3 columns active"><span>4</span><a href="#"><?php _e('Confirmation', 'north'); ?></a></li>
	</ul>
<section class="section text-center" id="checkout_thankyou">
<?php if ( $order ) : ?>
	<div class="row">
	<?php if ( $order->has_status( 'failed' ) ) : ?>
		<div class="small-12 columns">
			<div class="smalltitle"><?php _e( 'Unfortunately your order cannot be processed as the originating bank/merchant has declined your transaction.','north' ); ?></div>
	
			<p><?php
				if ( is_user_logged_in() )
					_e( 'Please attempt your purchase again or go to your account page.','north' );
				else
					_e( 'Please attempt your purchase again.','north' );
			?></p>
	
			<p>
				<a href="<?php echo esc_url( $order->get_checkout_payment_url() ); ?>" class="button pay"><?php _e( 'Pay','north' ) ?></a>
				<?php if ( is_user_logged_in() ) : ?>
				<a href="<?php echo esc_url( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>" class="button pay"><?php _e( 'My Account','north' ); ?></a>
				<?php endif; ?>
			</p>
		</div>
	<?php else : ?>
		<div class="small-12 columns">
			<div class="smalltitle"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received.','north'  ), $order ); ?></div>
			
			<ul class="order_details">
				<li class="order">
					<?php _e( 'Order:','north' ); ?>
					<strong><?php echo $order->get_order_number(); ?></strong>
				</li>
				<li class="date">
					<?php _e( 'Date:','north' ); ?>
					<strong><?php echo date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ); ?></strong>
				</li>
				<li class="total">
					<?php _e( 'Total:','north' ); ?>
					<strong><?php echo $order->get_formatted_order_total(); ?></strong>
				</li>
				<?php if ( $order->payment_method_title ) : ?>
				<li class="method">
					<?php _e( 'Payment method:','north' ); ?>
					<strong><?php echo $order->payment_method_title; ?></strong>
				</li>
				<?php endif; ?>
			</ul>
		</div>
	<?php endif; ?>
		
		<div class="small-12 columns text-center">
			<?php do_action( 'woocommerce_thankyou_' . $order->payment_method, $order->id ); ?>
		</div>
	</div>
<?php else : ?>

	<div class="small-12 columns text-center">
		<div class="smalltitle"><?php echo apply_filters( 'woocommerce_thankyou_order_received_text', __( 'Thank you. Your order has been received.','north'  ), null ); ?></div>
	</div>
<?php endif; ?>
</section>