'.($payment_success_title ?? 'Payment Successful!').'

'.($payment_success_message ?? 'Your order has been confirmed and an email confirmation has been sent to your email address.').'

'.($order_id ? '
'.($order_number_label ?? 'Order number').': #'.$order_id.'
' : '').'
'.($continue_shopping_btn ?? 'Continue Shopping').'
'; } elseif ($payment_status === 'pending') { // Payment pending $view .= '

'.($payment_pending_title ?? 'Payment Pending').'

'.($payment_pending_message ?? 'Your order has been received and is awaiting payment confirmation. You will receive an email once the payment is confirmed.').'

'.($order_id ? '
'.($order_number_label ?? 'Order number').': #'.$order_id.'
' : '').'
'; } elseif ($payment_status === 'processing') { // Payment is being processed $view .= '

'.($payment_processing_title ?? 'Processing Payment...').'

'.($payment_processing_message ?? 'Please wait while we confirm your payment. This may take a few moments.').'

'; } else { // Payment failed $view .= '

'.($payment_failed_title ?? 'Payment Not Successful').'

'.($payment_failed_message ?? 'Unfortunately, your payment could not be processed. Please try again or choose a different payment method.').'

'.($order_id ? '
'.($order_number_label ?? 'Order reference').': #'.$order_id.'
' : '').'
'; } $view .= template_footer(); echo $view; ?>