HEX
Server: Apache
System: Linux p3plzcpnl506847.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
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/sitepacket.com/system/app/Views/orders/order_parts/order_info.php
<?php if (get_setting("invoice_style") == "style_3") { ?>
<div style="font-size: 25px; color: #666; margin-bottom: 10px;"><?php echo app_lang("order"); ?></div>
<div style="line-height: 5px;"></div>
<span class="invoice-meta text-default"><?php echo app_lang("order_number") . ": " . get_order_id($order_info->id); ?></span><br />
<?php } else { ?>
<span style="font-size:20px; font-weight: bold;background-color: <?php echo $color; ?>; color: #fff;">&nbsp;<?php echo get_order_id($order_info->id); ?>&nbsp;</span>
<div style="line-height: 10px;"></div>
<?php } ?>

<span class="invoice-meta text-default"><?php 
if (isset($order_info->custom_fields) && $order_info->custom_fields) {
    foreach ($order_info->custom_fields as $field) {
        if ($field->value) {
            echo "<span>" . $field->custom_field_title . ": " . view("custom_fields/output_" . $field->custom_field_type, array("value" => $field->value)) . "</span><br />";
        }
    }
}

echo app_lang("order_date") . ": " . format_to_date($order_info->order_date, false); ?>
</span>