PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.6.4
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.6.4
1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 trunk 1.2.0 All 47 releases
fluent-cart / app / Views / emails / components / header.php

header.php in FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler 1.6.4, at app/Views/emails/components/header.php

23 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
2 <div style="position: relative;">
3 <table style="width: 100%; border-collapse: collapse; margin-bottom: 0px; border: 0;">
4 <tbody>
5 <tr>
6 <td style="vertical-align: middle; width: 70%; border: 0; padding: 16px 10px 16px 0;">
7 <p style="margin: 0;font-weight: 700;font-size: 24px;">{{settings.store_brand}}</p>
8 </td>
9 <td style="vertical-align: middle; width: 15%; text-align: right; border: 0; padding: 16px;">
10 <p style="white-space: nowrap; color: #94a3b8; text-align: right; margin: 0;font-size:12px;"><?php echo esc_html__('Order Date', 'fluent-cart'); ?></p>
11 <p style="white-space: nowrap; font-weight: bold; color: #000; text-align: right; margin: 0;font-size:15px;">{{order.created_at}}</p>
12 </td>
13 <td style="vertical-align: middle; width: 15%; text-align: right; border: 0; padding: 16px 0 16px 10px;">
14 <p style="white-space: nowrap; color: #94a3b8; text-align: right; margin: 0;font-size:12px;"><?php echo esc_html__('Receipt #', 'fluent-cart'); ?></p>
15 <p style="white-space: nowrap; font-weight: bold; color: #000; text-align: right; margin: 0;font-size:15px;">
16 <a style="text-decoration: underline; color: #000;" href="{{order.customer_dashboard_link}}">{{order.invoice_no}}</a>
17 </p>
18 </td>
19 </tr>
20 </tbody>
21 </table>
22 </div>
23