mirror of
https://github.com/pronamic/woocommerce-subscriptions.git
synced 2025-10-07 01:54:05 +00:00
19 lines
516 B
PHP
19 lines
516 B
PHP
<?php
|
|
/**
|
|
* Un-editable gift recipient details fields for displaying the recipient of a cart item.
|
|
*
|
|
* @package WooCommerce Subscriptions Gifting/Templates
|
|
* @version 2.0.1
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly.
|
|
}
|
|
?>
|
|
<fieldset id="woocommerce_subscriptions_gifting_field">
|
|
<label class="woocommerce_subscriptions_gifting_recipient_email">
|
|
<?php esc_html_e( 'Recipient: ', 'woocommerce-subscriptions' ); ?>
|
|
</label>
|
|
<div><?php echo esc_html( $email ); ?></div>
|
|
</fieldset>
|