Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/jet-booking   php

Repository URL to install this package:

Version: 2.2.1 

/ order-details.php

<?php
/**
 * WooCommerce order details
 */
?>
<h2 class="woocommerce-order-details__title"><?php _e( 'Booking Details', 'jet-appointments-booking' ); ?></h2>
<ul class="woocommerce-order-overview woocommerce-thankyou-order-details order_details"><?php
	foreach ( $details as $item ) {
		echo '<li>';
			if ( ! empty( $item['key'] ) ) {
				echo $item['key'] . ': ';
			}
			if ( ! empty( $item['is_html'] ) ) {
				echo $item['display'];
			} else {
				echo '<strong>' . $item['display'] . '</strong>';
			}
		echo '</li>';
	}
?></ul>