18 lines
518 B
PHP
18 lines
518 B
PHP
<?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, '' );
|