first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?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; ?>

View File

@@ -0,0 +1,22 @@
<?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>