Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
test
/
wp-content
/
plugins
/
flexible-shipping
/
templates
/
myaccount
:
after_order_table_checkout_field.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Checkout field: ie. access point. * * This template can be overridden by copying it to yourtheme/flexible-shipping/my-account/after_order_table_checkout_field.php * * @author WP Desk * @version 1.0.0 * @package Flexible Shipping. * * @var string $field_label * @var string $field_value */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly ?> <h2><?php echo esc_html( $field_label ); ?></h2> <p> <?php echo esc_html( $field_value ); ?> </p>