PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.6.5
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.6.5
1.6.6 1.6.5 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 All 49 releases
fluent-cart / app / Views / invoice / parts / table_row.php

table_row.php in FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler 1.6.5, at app/Views/invoice/parts/table_row.php

26 lines 1.4 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 <?php
3 use FluentCart\App\Helpers\Helper;
4 ?>
5
6 <tr>
7 <td>
8 <div style="overflow: hidden;">
9 <div style="float: left; border: 1px solid #D6DAE1; width: 32px; height: 32px; border-radius: 4px; margin-right: 12px; margin-top: 3px">
10 <img src="<?php echo esc_url($product->thumbnail ?? ''); ?>" style="width: 100%; height: 100%; border-radius: 3px;" alt="<?php echo esc_attr($item->post_title); ?>"/>
11 </div>
12 <div style="overflow: hidden;">
13 <div style="font-size: 13px; color: #2F3448; font-weight: 500; overflow: hidden; line-height: 18px; margin-top: 0; margin-bottom: 5px">
14 <?php echo esc_html($item->post_title); ?>
15 </div>
16 <div style="margin: 0; font-size: 12px; color: #758195; font-weight: 400; line-height: 15px;">
17 -- <?php echo esc_html($item->variation_display_title ?: $item->title); ?>
18 </div>
19 </div>
20 </div>
21 </td>
22 <td style="text-align: center; padding-left: 8px; padding-right: 8px;"><?php echo (int) $item->quantity; ?></td>
23 <td style="text-align: center; padding-left: 8px; padding-right: 8px;"><?php echo esc_html(Helper::toDecimal($item->unit_price)); ?></td>
24 <td style="text-align: center; padding-left: 8px; padding-right: 8px;"><?php echo esc_html(Helper::toDecimal($item->subtotal)); ?></td>
25 </tr>
26