Uname: Linux p3plzcpnl499967.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Software: Apache
PHP version: 8.2.30 [ PHP INFO ] PHP os: Linux
Server Ip: 208.109.40.231
Your Ip: 216.73.216.26
User: nayff91c5tsx (10005085) | Group: nayff91c5tsx (10005085)
Safe Mode: OFF
Disable Function:
NONE

name : payment_info.php
<div class="ffp_payment_info">
    <div class="ffp_payment_info_item ffp_payment_info_item_order_id">
        <div class="ffp_item_heading"><?php _e('Order ID:', 'fluentformpro');?></div>
        <div class="ffp_item_value">#<?php echo $submission->id; ?></div>
    </div>
    <div class="ffp_payment_info_item ffp_payment_info_item_date">
        <div class="ffp_item_heading"><?php _e('Date:' ,'fluentformpro');?></div>
        <div class="ffp_item_value"><?php echo date(get_option( 'date_format' ), strtotime($submission->created_at)); ?></div>
    </div>
    <div class="ffp_payment_info_item ffp_payment_info_item_total">
        <div class="ffp_item_heading"><?php _e('Total:','fluentformpro');?></div>
        <div class="ffp_item_value"><?php echo $totalPaid; ?></div>
    </div>
    <?php
    $paymentMethod = $submission->payment_method;
    if($paymentMethod): ?>
        <div class="ffp_payment_info_item ffp_payment_info_item_payment_method">
            <div class="ffp_item_heading"><?php _e('Payment Method:','fluentformpro');?></div>
            <div class="ffp_item_value"><?php
                $paymentMethod = apply_filters_deprecated(
                    'fluentform_payment_method_public_name_' . $paymentMethod,
                    [
                        $paymentMethod
                    ],
                    FLUENTFORM_FRAMEWORK_UPGRADE,
                    'fluentform/payment_method_public_name_' . $paymentMethod,
                    'Use fluentform/payment_method_public_name_' . $paymentMethod. ' instead of fluentform_payment_method_public_name_' . $paymentMethod
                );
                echo ucfirst(
                    apply_filters(
                        'fluentform/payment_method_public_name_' . $paymentMethod,
                        $paymentMethod
                    )
                ); ?></div>
        </div>
    <?php endif; ?>
    <?php
    if ($submission->payment_status):
        $allStatus = \FluentFormPro\Payments\PaymentHelper::getPaymentStatuses();
        if (isset($allStatus[$submission->payment_status])) {
            $submission->payment_status = $allStatus[$submission->payment_status];
        }
        ?>
        <div class="ffp_payment_info_item ffp_payment_info_item_payment_status">
            <div class="ffp_item_heading"><?php _e('Payment Status:','fluentformpro');?></div>
            <div class="ffp_item_value"><?php echo $submission->payment_status; ?></div>
        </div>
    <?php endif; ?>
</div>
© 2026 GrazzMean