20 lines
620 B
PHP
20 lines
620 B
PHP
<?php
|
|
/**
|
|
* Shipment tracking links
|
|
*
|
|
* This template can be overridden by copying it to yourtheme/flexible-shipping/myaccount/after_order_table.php
|
|
*
|
|
* @author WP Desk
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
?>
|
|
<h2><?php esc_html_e( 'Shipment', 'flexible-shipping' ); ?></h2>
|
|
<?php foreach ( $shipments as $shipment ) : ?>
|
|
<p>
|
|
<?php esc_html_e( 'Track shipment: ', 'flexible-shipping' ); ?><a target="_blank" href="<?php echo esc_attr( $shipment['tracking_url'] ); ?>"><?php echo esc_attr( $shipment['tracking_number'] ); ?></a>
|
|
</p>
|
|
<?php endforeach; ?>
|