forked from atticoos/YankeeLobster-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar-hours.php
56 lines (52 loc) · 1.39 KB
/
sidebar-hours.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
<?php
$hours = get_field('store_hours','option');
$phone = get_field('store_telephone','option');
$fax = get_field('store_fax','option');
$emails = get_field('store_emails','option');
$address= get_field('store_address','option');
?>
<div id="hoursLocation">
<h2>Store hours & Location</h2>
<div class="row">
<div class="col-md-12 hours">
We're open
<br/>
<?php echo $hours; ?>
<br/><br/>
</div>
</div>
<div class="row">
<div class="col-md-12">
If you have any questions or would like to place an order, We'd be happy to talk with you
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="yankeeMap" id="map_canvas"></div>
</div>
</div>
<div class="row contact-methods">
<div class="col-md-6 address">
<?php echo $address; ?>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-md-6">Telephone:</div>
<div class="col-md-6"><?php echo $phone; ?></div>
</div>
<div class="row">
<div class="col-md-6">Fax:</div>
<div class="col-md-6"><?php echo $fax; ?></div>
</div>
<div class="row">
<div class="col-md-12">
Email:
<?php foreach($emails as $email): ?>
<br/>
<a class="redtext owner-email" title="Email a Yankee Lobster owner" href="mailto:<?php echo $email['email']; ?>"><?php echo $email['email']; ?></a>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
</div>