after_order_table_checkout_field.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Checkout field: ie. access point. |
| 4 | * |
| 5 | * This template can be overridden by copying it to yourtheme/flexible-shipping/email/after_order_table_checkout_field.php |
| 6 | * |
| 7 | * @author WP Desk |
| 8 | * @version 1.0.0 |
| 9 | * @package Flexible Shipping. |
| 10 | * |
| 11 | * @var string $field_label |
| 12 | * @var string $field_value |
| 13 | */ |
| 14 | |
| 15 | if ( ! defined( 'ABSPATH' ) ) { |
| 16 | exit; |
| 17 | } // Exit if accessed directly |
| 18 | ?> |
| 19 | <h2><?php echo esc_html( $field_label ); ?></h2> |
| 20 | <p> |
| 21 | <?php echo esc_html( $field_value ); ?> |
| 22 | </p> |
| 23 |