PluginProbe
YayMail – WooCommerce Email Customizer / 3.2.2
YayMail – WooCommerce Email Customizer v3.2.2
4.4.4 4.4.3 4.4.2 4.4.1 trunk 1.9.6 2.1.4 2.1.5 3.2.2 3.2.6 3.2.7.1 3.2.8.1 3.2.9 3.3 3.3.1 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9 3.4 3.4.1 3.4.2 3.4.3 All 55 releases
yaymail / includes / Templates / Elements / YayMail / OrderItem.php

OrderItem.php in YayMail – WooCommerce Email Customizer 3.2.2, at includes/Templates/Elements/YayMail/OrderItem.php

64 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <style>
2 h1{color:red;}
3 </style>
4 <table
5 width="<?php esc_attr_e( $general_attrs['tableWidth'], 'woocommerce' ); ?>"
6 cellspacing="0"
7 cellpadding="0"
8 border="0"
9 align="center"
10 style="display: table; <?php echo esc_attr( 'background-color: ' . $attrs['backgroundColor'] ); ?>; <?php echo ! $isInColumns ? esc_attr( 'min-width:' . $general_attrs['tableWidth'] . 'px' ) : esc_attr( 'width: 100%' ); ?>"
11 class="web-main-row"
12 id="web<?php echo esc_attr( $id ); ?>"
13 >
14 <tbody>
15 <tr>
16 <td
17 id="web-<?php echo esc_attr( $id ); ?>-order-item"
18 class="web-order-item"
19 align="left"
20 style='font-size: 13px; line-height: 22px; word-break: break-word;
21 <?php echo 'font-family: ' . wp_kses_post( $attrs['family'] ); ?>;
22 <?php echo esc_attr( 'padding: ' . $attrs['paddingTop'] . 'px ' . $attrs['paddingRight'] . 'px ' . $attrs['paddingBottom'] . 'px ' . $attrs['paddingLeft'] . 'px;' ); ?>
23 '
24 >
25 <div
26 style="min-height: 10px; <?php echo esc_attr( 'color: ' . $attrs['textColor'] ); ?>;"
27 >
28 <div class="yaymail_items_border_custom" style="<?php echo esc_attr( 'color: ' . $attrs['titleColor'] ); ?>">
29 <?php echo wp_kses_post( $attrs['contentBefore'] ); ?>
30 </div>
31 <h2
32 class="yaymail_builder_order"
33 style="font-size: 18px; font-weight: 700; <?php echo esc_attr( 'color: ' . $attrs['titleColor'] ); ?>"
34 >
35 <div class="yaymail_builder_order_title" style='<?php echo 'font-family: ' . wp_kses_post( $attrs['family'] ); ?>;'>
36 <?php echo wp_kses_post( $attrs['contentTitle'] ); ?>
37 </div>
38 </h2>
39 <div>
40 <table
41 class="yaymail_builder_table_items_content"
42 cellspacing="0"
43 cellpadding="6"
44 border="1"
45 width="100%"
46 style='border-collapse: separate;
47 <?php echo esc_attr( 'color: ' . $attrs['textColor'] ); ?>;
48 <?php echo esc_attr( 'border: 1px solid ' . $attrs['borderColor'] ); ?>;
49 <?php echo 'font-family: ' . wp_kses_post( $attrs['family'] ); ?>;
50 '
51 >
52 <?php echo wp_kses_post( $attrs['content'] ); ?>
53 </table>
54 </div>
55
56 <div>
57 <?php echo wp_kses_post( $attrs['contentAfter'] ); ?>
58 </div>
59 </div>
60 </td>
61 </tr>
62 </tbody>
63 </table>
64