1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php // phpcs:ignoreFile /** * Order table. Can only be used with the order.items variable * Override this template by copying it to yourtheme/automatewoo/email/order-table.php * * @see https://automatewoo.com/docs/email/product-display-templates/ * * @var WC_Order $order * @var AutomateWoo\Workflow $workflow * @var string $variable_name * @var string $data_type * @var string $data_field */
if ( ! defined( 'ABSPATH' ) ) exit;
do_action( 'woocommerce_email_order_details', $order, false, false, '' );
|