-
Notifications
You must be signed in to change notification settings - Fork 1
/
single-product.php
73 lines (57 loc) · 1.77 KB
/
single-product.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* The template for displaying all single posts
*
*
*
* @package wpland
*/
get_header();
?>
<div class="container">
<div class="product-single">
<div class="product-body">
<div class="product-head">
<h2 class="product-title"><?php the_title();?></h2>
<?php wpland_post_thumbnail(); ?>
</div>
<div class="product-detail">
<div class="product__property-content">
<div class="product__property_head">
<h3>
Product Detail
</h3>
</div>
<div class="product__property_row">
<span class="product__property_label">Width</span>
<span class="product__property_value"><?php the_field('product_width') ?> cm</span>
</div>
<div class="product__property_row">
<span class="product__property_label">Height</span>
<span class="product__property_value"><?php the_field('product_height') ?> cm</span>
</div>
<div class="product__property_row">
<span class="product__property_label">Price</span>
<span class="product__property_value"> <?php the_field("product_price") ?> $</span>
</div>
<div class="product__property_row popup">
<a href="#" data-fancybox data-src="#product__order" class="button order-button">Order</a>
<div style="display: none;" id="product__order">
<div>
<h4 class="product-title"><?php the_title();?></h4>
</div>
<div>
<?php echo do_shortcode('[contact-form-7 id="47"]');?>
</div>
</div>
</div>
</div>
</div>
</div><!-- End product-body -->
<div class="product__description">
<?php the_excerpt(); ?>
</div>
</div>
</div>
<?php
get_footer();