1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
<?php
if ( ! defined( 'ABSPATH' ) ) { exit; } $text_align = is_rtl() ? 'right' : 'left'; $yaymail_settings = get_option( 'yaymail_settings' ); $yaymail_template = get_post_meta( $postID, '_yaymail_template', true ); $orderImagePostions = isset( $yaymail_settings['image_position'] ) && ! empty( $yaymail_settings['image_position'] ) ? $yaymail_settings['image_position'] : 'Top'; $orderImage = isset( $yaymail_settings['product_image'] ) && '0' != $yaymail_settings['product_image'] ? $yaymail_settings['product_image'] : '0'; $productHyperLinks = isset( $yaymail_settings['product_hyper_links'] ) ? $yaymail_settings['product_hyper_links'] : 0; $productRegularPrice = isset( $yaymail_settings['product_regular_price'] ) ? $yaymail_settings['product_regular_price'] : 0; $productItemCost = isset( $yaymail_settings['product_item_cost'] ) ? $yaymail_settings['product_item_cost'] : 0;
if ( ! function_exists( 'yaymail_get_global_taxonomy_attribute_data' ) ) : function yaymail_get_global_taxonomy_attribute_data( $name, $product, $single_product = null ) { $out = array();
$product_id = is_numeric( $product ) ? $product : $product->get_id(); $terms = wp_get_post_terms( $product_id, $name, 'all' );
if ( ! empty( $terms ) ) { if ( ! is_wp_error( $terms ) ) { $tax = $terms[0]->taxonomy; $tax_object = get_taxonomy( $tax ); if ( isset( $tax_object->labels->singular_name ) ) { $out['label'] = $tax_object->labels->singular_name; } elseif ( isset( $tax_object->label ) ) { $out['label'] = $tax_object->label; $label_prefix = __( 'Product', 'woocommerce-show-attributes' ) . ' '; if ( 0 === strpos( $out['label'], $label_prefix ) ) { $out['label'] = substr( $out['label'], strlen( $label_prefix ) ); } } $tax_terms = array(); foreach ( $terms as $term ) { $single_term = esc_html( $term->name );
// Show terms as links? if ( $single_product ) { if ( get_option( 'wcsa_terms_as_links' ) == 'yes' ) { $term_link = get_term_link( $term ); if ( ! is_wp_error( $term_link ) ) { $single_term = '<a href="' . esc_url( $term_link ) . '">' . esc_html( $term->name ) . '</a>'; } } } array_push( $tax_terms, $single_term ); } $out['value'] = implode( ', ', $tax_terms ); } }
return $out; } endif;
foreach ( $items as $item_id => $item ) : if ( apply_filters( 'woocommerce_order_item_visible', true, $item ) ) { $product = $item->get_product(); $result_attributes = array(); $product_id = ( $item['variation_id'] ? $item['variation_id'] : $item['product_id'] );
if ( ! $product ) { continue; } ?> <?php // For Woo Show Attributes Plugins if ( class_exists( 'WooCommerce_Show_Attributes' ) ) {
if ( is_a( $product, 'WC_Product_Variation' ) ) { $attributes = get_post_meta( $product->get_parent_id(), '_product_attributes', true ); if ( ! $attributes ) { echo ''; } foreach ( $attributes as $attribute ) { if ( $attribute['is_visible'] && empty( $attribute['is_variation'] ) ) { if ( $attribute['is_taxonomy'] ) { $result_attributes[] = yaymail_get_global_taxonomy_attribute_data( $attribute['name'], $product->get_parent_id() ); } else { $result_attributes[] = array( 'label' => $attribute['name'], 'value' => $attribute['value'], ); } } } } else {
$attributes = $product->get_attributes(); if ( ! $attributes ) { echo ''; } foreach ( $attributes as $attribute ) { if ( ! is_a( $attribute, 'WC_Product_Attribute' ) ) { continue; } if ( $attribute->get_variation() ) { continue; } if ( ! $attribute->get_visible() ) { continue; } $name = $attribute->get_name(); if ( $attribute->is_taxonomy() ) { $result_attributes[] = yaymail_get_global_taxonomy_attribute_data( $name, $product ); } else { $result_attributes[] = array( 'label' => $name, 'value' => esc_html( implode( ', ', $attribute->get_options() ) ), );
} } } } ?> <tr class="<?php echo esc_attr( apply_filters( 'woocommerce_order_item_class', 'order_item', $item, $order ) ); ?>"> <th colspan="<?php echo wp_kses_post( apply_filters( 'yaymail_order_item_product_title_colspan', 1, $yaymail_template ) ); ?>" class="td yaymail_item_product_content" style="text-align:<?php echo esc_attr( $text_align ); ?>;font-weight: normal;word-wrap:break-word;vertical-align: middle;padding: 12px;font-size: 14px;border-width: 1px;border-style: solid;<?php echo esc_attr( isset( $default_args['border_color'] ) ? $default_args['border_color'] : '' ); ?>;"> <?php
if ( 'Bottom' == $orderImagePostions && '1' == $orderImage ) { echo ( '<div class="yaymail-product-texts preview1" style="padding: 5px 0;">' ); // Product name if ( $productHyperLinks ) { if ( method_exists( $product, 'get_permalink' ) ) { echo wp_kses_post( ' <a style="color:' . $text_link_color . '" target="_blank" href="' . $product->get_permalink() . '"><span class="yaymail-product-name">' . wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) ) . '</span></a>' ); } else { echo wp_kses_post( '<span class="yaymail-product-name">' . wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) ) . '</span>' ); } } else { echo wp_kses_post( '<span class="yaymail-product-name">' . wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) ) . '</span>' ); }
// SKU if ( $args['show_sku'] && is_object( $product ) && $product->get_sku() && $product ) { echo wp_kses_post( '<span class="yaymail-product-sku"> <span class="yaymail-parenthesis"> (#</span>' . $product->get_sku() . '<span class="yaymail-parenthesis">)</span></span>' ); }
if ( $args['show_des'] && is_object( $product ) && $product->get_short_description() && $product ) { echo wp_kses_post( '<div class="yaymail-product-short-descript"><span class="yaymail-parenthesis"> (#</span>' . $product->get_short_description() . '<span class="yaymail-parenthesis">)</span></div>' ); } if ( $args['show_des'] && is_object( $product ) && 'variation' === $product->get_type() ) { echo wp_kses_post( '<div class="yaymail-product-description"><span class="yaymail-parenthesis"> (#</span>' . $product->get_description() . '<span class="yaymail-parenthesis">)</span></div>' ); }
// Woo Show Attributes if ( class_exists( 'WooCommerce_Show_Attributes' ) ) : foreach ( $result_attributes as $key1 => $result_attribute ) { $attribute_output = $result_attribute['label'] . ': ' . $result_attribute['value']; echo '<br>' . wp_kses_post( $attribute_output ); } endif; // allow other plugins to add additional product information here do_action( 'woocommerce_order_item_meta_start', $item_id, $item, $order, $args['plain_text'] ); if ( class_exists( 'YITH_Barcode' ) ) { if ( YITH_YWBC()->show_product_barcode_on_email ) { echo '<div class="ywbc-email-product-barcode-container">' . do_shortcode( '[yith_render_barcode id="' . $product_id . '"]' ) . '</div>'; } }
// Display item meta data. wc_display_item_meta( $item );
echo ( '</div>' ); // Show title/image etc if ( $args['show_image'] && is_object( $product ) ) { echo wp_kses_post( apply_filters( 'woocommerce_order_item_thumbnail', '<div class="yaymail-product-image" style="margin-bottom: 5px"><img src="' . ( $product->get_image_id() ? current( wp_get_attachment_image_src( $product->get_image_id(), $args['image_size'][2] ) ) : wc_placeholder_img_src() ) . '" alt="' . esc_attr__( 'Product image', 'woocommerce' ) . '" height="' . esc_attr( str_replace( 'px', '', $args['image_size'][1] ) ) . '" width="' . esc_attr( str_replace( 'px', '', $args['image_size'][0] ) ) . '" style="vertical-align:middle; margin-' . ( is_rtl() ? 'left' : 'right' ) . ': 10px;" /></div>', $item ) ); } } else { // Show title/image etc if ( $args['show_image'] && is_object( $product ) ) { if ( 'Top' == $orderImagePostions && $args['show_image'] && is_object( $product ) ) { echo wp_kses_post( apply_filters( 'woocommerce_order_item_thumbnail', '<div class="yaymail-product-image" style="margin-bottom: 5px; float: unset"><img src="' . ( $product->get_image_id() ? current( wp_get_attachment_image_src( $product->get_image_id(), $args['image_size'][2] ) ) : wc_placeholder_img_src() ) . '" alt="' . esc_attr__( 'Product image', 'woocommerce' ) . '" height="' . esc_attr( str_replace( 'px', '', $args['image_size'][1] ) ) . '" width="' . esc_attr( str_replace( 'px', '', $args['image_size'][0] ) ) . '" style="vertical-align:middle; margin-' . ( is_rtl() ? 'left' : 'right' ) . ': 10px;" /></div>', $item ) ); } else { echo wp_kses_post( apply_filters( 'woocommerce_order_item_thumbnail', '<div class="yaymail-product-image" style="margin-bottom: 5px; float: left"><img src="' . ( $product->get_image_id() ? current( wp_get_attachment_image_src( $product->get_image_id(), $args['image_size'][2] ) ) : wc_placeholder_img_src() ) . '" alt="' . esc_attr__( 'Product image', 'woocommerce' ) . '" height="' . esc_attr( str_replace( 'px', '', $args['image_size'][1] ) ) . '" width="' . esc_attr( str_replace( 'px', '', $args['image_size'][0] ) ) . '" style="vertical-align:middle; margin-' . ( is_rtl() ? 'left' : 'right' ) . ': 10px;" /></div>', $item ) ); } } echo ( '<div class="yaymail-product-texts" style="padding: 5px 0;">' ); // Product name if ( $productHyperLinks ) { if ( method_exists( $product, 'get_permalink' ) ) { echo wp_kses_post( ' <a style="color:' . $text_link_color . '" target="_blank" href="' . $product->get_permalink() . '"><span class="yaymail-product-name">' . wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) ) . '</span></a>' ); } else { echo wp_kses_post( '<span class="yaymail-product-name">' . wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) ) . '</span>' ); } } else { echo wp_kses_post( '<span class="yaymail-product-name">' . wp_kses_post( apply_filters( 'woocommerce_order_item_name', $item->get_name(), $item, false ) ) . '</span>' ); }
// SKU if ( $args['show_sku'] && is_object( $product ) && $product->get_sku() && $product ) { echo wp_kses_post( '<span class="yaymail-product-sku"> <span class="yaymail-parenthesis"> (#</span>' . $product->get_sku() . '<span class="yaymail-parenthesis">)</span></span>' ); }
if ( $args['show_des'] && is_object( $product ) && $product->get_short_description() && $product ) { echo wp_kses_post( '<div class="yaymail-product-short-descript"><span class="yaymail-parenthesis"> (#</span>' . $product->get_short_description() . '<span class="yaymail-parenthesis">)</span></div>' ); } if ( $args['show_des'] && is_object( $product ) && 'variation' === $product->get_type() ) { echo wp_kses_post( '<div class="yaymail-product-description"><span class="yaymail-parenthesis"> (#</span>' . $product->get_description() . '<span class="yaymail-parenthesis">)</span></div>' ); } if ( class_exists( 'WooCommerce_Show_Attributes' ) ) : foreach ( $result_attributes as $key1 => $result_attribute ) { $attribute_output = $result_attribute['label'] . ': ' . $result_attribute['value']; echo '<br>' . wp_kses_post( $attribute_output ); } endif; // allow other plugins to add additional product information here do_action( 'woocommerce_order_item_meta_start', $item_id, $item, $order, $args['plain_text'] ); if ( class_exists( 'YITH_Barcode' ) ) { if ( YITH_YWBC()->show_product_barcode_on_email ) { echo '<div class="ywbc-email-product-barcode-container">' . do_shortcode( '[yith_render_barcode id="' . $product_id . '"]' ) . '</div>'; } }
// Display item meta data. wc_display_item_meta( $item );
echo ( '</div>' ); }
// allow other plugins to add additional product information here do_action( 'woocommerce_order_item_meta_end', $item_id, $item, $order, $args['plain_text'] ); ?>
</th> <?php if ( $productItemCost && is_object( $product ) ) { ?> <th colspan="<?php echo wp_kses_post( apply_filters( 'yaymail_order_item_cost_colspan', 1, $yaymail_template ) ); ?>" class="td yaymail_item_cost_content" style="text-align:<?php echo esc_attr( $text_align ); ?>;font-weight: normal; vertical-align:middle;padding: 12px;font-size: 14px;border-width: 1px;border-style: solid;<?php echo esc_attr( isset( $default_args['border_color'] ) ? $default_args['border_color'] : '' ); ?>;"> <?php echo wp_kses_post( wc_price( $order->get_item_subtotal( $item, false, true ), array( 'currency' => $order->get_currency() ) ) ); ?> </th> <?php } ?> <th colspan="<?php echo wp_kses_post( apply_filters( 'yaymail_order_item_quantity_colspan', 1, $yaymail_template ) ); ?>" class="td yaymail_item_quantity_content" style="text-align:<?php echo esc_attr( $text_align ); ?>;font-weight: normal; vertical-align:middle;padding: 12px;font-size: 14px;border-width: 1px;border-style: solid;<?php echo esc_attr( isset( $default_args['border_color'] ) ? $default_args['border_color'] : '' ); ?>;"> <?php $qty = $item->get_quantity(); $refunded_qty = $order->get_qty_refunded_for_item( $item_id );
if ( $refunded_qty && 'customer_refunded_order' == $yaymail_template ) { $qty_display = '<del>' . esc_html( $qty ) . '</del> <ins>' . esc_html( $qty - ( $refunded_qty * -1 ) ) . '</ins>'; } else { $qty_display = esc_html( $qty ); } echo wp_kses_post( apply_filters( 'woocommerce_email_order_item_quantity', $qty_display, $item ) ); ?> </th> <th colspan="<?php echo wp_kses_post( apply_filters( 'yaymail_order_item_price_colspan', 1, $yaymail_template ) ); ?>" class="td yaymail_item_price_content" style="text-align:<?php echo esc_attr( $text_align ); ?>;font-weight: normal;vertical-align: middle;padding: 12px;font-size: 14px;border-width: 1px;border-style: solid;<?php echo esc_attr( isset( $default_args['border_color'] ) ? $default_args['border_color'] : '' ); ?>; word-break: break-all;"> <?php if ( $productRegularPrice && is_object( $product ) ) { $product_regular_price = isset( $product->get_data()['regular_price'] ) ? (float) $product->get_data()['regular_price'] : null; if ( $order->get_currency() !== get_option( 'woocommerce_currency' ) ) { foreach ( $item->get_meta_data() as $product_meta ) { if ( '_wcpdf_regular_price' !== $product_meta->key ) { continue; } $product_regular_price = $product_meta->value[ get_option( 'woocommerce_tax_display_cart' ) ? get_option( 'woocommerce_tax_display_cart' ) : 'excl' ]; break; }
$wcpay_multi_currency_order_exchange_rate = $order->get_meta( '_wcpay_multi_currency_order_exchange_rate', true ); if ( ! empty( $wcpay_multi_currency_order_exchange_rate ) ) { $wcpay_currency = new \WCPay\MultiCurrency\Currency( \WC_Payments::get_localization_service(), strtolower( $order->get_currency() ), $wcpay_multi_currency_order_exchange_rate ); $is_zero_decimal = $wcpay_currency->get_is_zero_decimal(); $price_rounding = (float) get_option( 'wcpay_multi_currency_price_rounding_' . $wcpay_currency->get_code(), $wcpay_currency->get_is_zero_decimal() ? '100' : '1.00' );
$product_regular_price = (float) $product_regular_price * $wcpay_multi_currency_order_exchange_rate; if ( 0.00 !== $price_rounding ) { $product_regular_price = (float) ceil( $product_regular_price / $price_rounding ) * $price_rounding; } }
if ( class_exists( 'Yay_Currency\Helpers\YayCurrencyHelper' ) ) { $apply_currency = Yay_Currency\Helpers\YayCurrencyHelper::get_currency_by_currency_code( $order->get_currency() ); $product_regular_price = Yay_Currency\Helpers\YayCurrencyHelper::calculate_price_by_currency( $product_regular_price, false, $apply_currency ); } } if ( 'incl' === get_option( 'woocommerce_tax_display_cart' ) ) { $product_regular_price = wc_get_price_including_tax( $product, array( 'qty' => $qty, 'price' => $product_regular_price, ) ); } else { $product_regular_price = wc_get_price_excluding_tax( $product, array( 'qty' => $qty, 'price' => $product_regular_price, ) ); } $product_regular_price_html = ! empty( $product_regular_price ) ? wc_price( $product_regular_price * $item->get_quantity(), array( 'currency' => $order->get_currency() ) ) : ''; if ( ! empty( $product_regular_price_html ) && $product_regular_price_html !== $order->get_formatted_line_subtotal( $item ) ) { echo wp_kses_post( '<del>' . $product_regular_price_html . '</del> ' ); } } echo wp_kses_post( $order->get_formatted_line_subtotal( $item ) ); ?> </th> </tr> <?php }
// Show purchase note $purchase_note = ''; if ( $product && $product->get_purchase_note() ) { $purchase_note = $product->get_purchase_note(); }
if ( ( 'customer_on_hold_order' === $this->template || 'customer_processing_order' === $this->template || 'customer_completed_order' === $this->template || 'customer_refunded_order' === $this->template || 'customer_invoice' === $this->template || 'customer_note' === $this->template || 'new_order' === $this->template ) && isset( $args['show_purchase_note'] ) && is_object( $product ) && ! empty( $purchase_note ) ) { ?>
<tr class="yaymail-purchase-note"> <th colspan="3" style="text-align:<?php echo esc_attr( $text_align ); ?>;font-weight: normal;vertical-align: middle;padding: 12px;font-size: 14px;border-width: 1px;border-style: solid;<?php echo esc_attr( isset( $default_args['border_color'] ) ? $default_args['border_color'] : '' ); ?>;"> <?php echo wp_kses_post( wpautop( do_shortcode( $purchase_note ) ) ); ?> </th> </tr> <?php } ?>
<?php endforeach; ?>
|