99 lines
4.0 KiB
PHP
99 lines
4.0 KiB
PHP
<?php
|
|
/**
|
|
* Template for Single Product (used by shortcode)
|
|
*/
|
|
|
|
if (!defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
<div class="dutchie-single-product dutchie-layout-horizontal">
|
|
<?php if (!empty($product['image_url_full'])): ?>
|
|
<div class="dutchie-single-product-image">
|
|
<img src="<?php echo esc_url($product['image_url_full']); ?>"
|
|
alt="<?php echo esc_attr($product['name']); ?>" />
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="dutchie-single-product-details">
|
|
<h2 class="dutchie-single-product-title">
|
|
<?php echo esc_html($product['name']); ?>
|
|
</h2>
|
|
|
|
<?php if (!empty($product['brand'])): ?>
|
|
<div class="dutchie-single-product-brand">
|
|
<strong><?php _e('Brand:', 'dutchie-menus'); ?></strong>
|
|
<?php echo esc_html($product['brand']); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($product['description'])): ?>
|
|
<div class="dutchie-single-product-description">
|
|
<?php echo wp_kses_post(nl2br($product['description'])); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="dutchie-single-product-info">
|
|
<?php if (!empty($product['metadata']['thc'])): ?>
|
|
<div class="dutchie-info-item">
|
|
<strong><?php _e('THC:', 'dutchie-menus'); ?></strong>
|
|
<span><?php echo esc_html($product['metadata']['thc']); ?></span>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($product['metadata']['cbd'])): ?>
|
|
<div class="dutchie-info-item">
|
|
<strong><?php _e('CBD:', 'dutchie-menus'); ?></strong>
|
|
<span><?php echo esc_html($product['metadata']['cbd']); ?></span>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($product['metadata']['terpenes'])): ?>
|
|
<div class="dutchie-info-item dutchie-terpenes">
|
|
<strong><?php _e('Terpenes:', 'dutchie-menus'); ?></strong>
|
|
<?php if (is_array($product['metadata']['terpenes'])): ?>
|
|
<span><?php echo esc_html(implode(', ', $product['metadata']['terpenes'])); ?></span>
|
|
<?php else: ?>
|
|
<span><?php echo esc_html($product['metadata']['terpenes']); ?></span>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($product['metadata']['effects'])): ?>
|
|
<div class="dutchie-info-item dutchie-effects">
|
|
<strong><?php _e('Effects:', 'dutchie-menus'); ?></strong>
|
|
<?php if (is_array($product['metadata']['effects'])): ?>
|
|
<span><?php echo esc_html(implode(', ', $product['metadata']['effects'])); ?></span>
|
|
<?php else: ?>
|
|
<span><?php echo esc_html($product['metadata']['effects']); ?></span>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!empty($product['metadata']['flavors'])): ?>
|
|
<div class="dutchie-info-item dutchie-flavors">
|
|
<strong><?php _e('Flavors:', 'dutchie-menus'); ?></strong>
|
|
<?php if (is_array($product['metadata']['flavors'])): ?>
|
|
<span><?php echo esc_html(implode(', ', $product['metadata']['flavors'])); ?></span>
|
|
<?php else: ?>
|
|
<span><?php echo esc_html($product['metadata']['flavors']); ?></span>
|
|
<?php endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<?php if (isset($product['price'])): ?>
|
|
<div class="dutchie-single-product-price">
|
|
$<?php echo number_format($product['price'], 2); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if (!$product['in_stock']): ?>
|
|
<div class="dutchie-out-of-stock">
|
|
<?php _e('Out of Stock', 'dutchie-menus'); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|