mirror of
https://github.com/myronblair/tomsjavajive
synced 2026-06-30 17:50:32 -05:00
Fix contact info — correct email, phone, and ZIP throughout
sales@tomsjavajive.com, (817) 266-2022, Weatherford TX 76088 applied to contact page, header schema, returns page, and FAQ. Fix Quick Links list style so links render properly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+9
-9
@@ -25,7 +25,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||
|
||||
if (empty($errors)) {
|
||||
$body = "Name: {$name}\nEmail: {$email}\nSubject: {$subject}\n\n{$message}";
|
||||
cybermailSend('hello@tomsjavajive.com', "Contact Form: {$subject}", $body, $name, $email);
|
||||
cybermailSend('sales@tomsjavajive.com', "Contact Form: {$subject}", $body, $name, $email);
|
||||
$sent = true;
|
||||
}
|
||||
}
|
||||
@@ -55,7 +55,7 @@ require_once __DIR__ . '/includes/header.php';
|
||||
</div>
|
||||
<div>
|
||||
<div style="font-weight: 600; margin-bottom: 0.2rem;">Email</div>
|
||||
<a href="mailto:hello@tomsjavajive.com">hello@tomsjavajive.com</a>
|
||||
<a href="mailto:sales@tomsjavajive.com">sales@tomsjavajive.com</a>
|
||||
<div class="text-muted" style="font-size: 0.85rem; margin-top: 0.15rem;">We reply within 1 business day</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -66,7 +66,7 @@ require_once __DIR__ . '/includes/header.php';
|
||||
</div>
|
||||
<div>
|
||||
<div style="font-weight: 600; margin-bottom: 0.2rem;">Phone</div>
|
||||
<a href="tel:+18175550120">(817) 555-0120</a>
|
||||
<a href="tel:+18172662022">(817) 266-2022</a>
|
||||
<div class="text-muted" style="font-size: 0.85rem; margin-top: 0.15rem;">Mon–Fri, 9am–5pm CT</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -77,7 +77,7 @@ require_once __DIR__ . '/includes/header.php';
|
||||
</div>
|
||||
<div>
|
||||
<div style="font-weight: 600; margin-bottom: 0.2rem;">Location</div>
|
||||
<div>Weatherford, TX 76086</div>
|
||||
<div>Weatherford, TX 76088</div>
|
||||
<div class="text-muted" style="font-size: 0.85rem; margin-top: 0.15rem;">United States</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -87,11 +87,11 @@ require_once __DIR__ . '/includes/header.php';
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h3 style="margin-bottom: 0.75rem; font-size: 1rem;">Quick Links</h3>
|
||||
<ul class="footer-links" style="list-style: none; padding: 0; margin: 0;">
|
||||
<li style="margin-bottom: 0.4rem;"><a href="/track-order.php"><i class="fas fa-search" style="width: 16px;"></i> Track Your Order</a></li>
|
||||
<li style="margin-bottom: 0.4rem;"><a href="/returns.php"><i class="fas fa-undo" style="width: 16px;"></i> Returns & Refunds</a></li>
|
||||
<li style="margin-bottom: 0.4rem;"><a href="/shipping.php"><i class="fas fa-truck" style="width: 16px;"></i> Shipping Info</a></li>
|
||||
<li><a href="/faq.php"><i class="fas fa-question-circle" style="width: 16px;"></i> FAQ</a></li>
|
||||
<ul style="list-style: none; padding: 0; margin: 0;">
|
||||
<li style="margin-bottom: 0.6rem;"><a href="/track-order.php"><i class="fas fa-search" style="width: 16px; margin-right: 0.4rem;"></i> Track Your Order</a></li>
|
||||
<li style="margin-bottom: 0.6rem;"><a href="/returns.php"><i class="fas fa-undo" style="width: 16px; margin-right: 0.4rem;"></i> Returns & Refunds</a></li>
|
||||
<li style="margin-bottom: 0.6rem;"><a href="/shipping.php"><i class="fas fa-truck" style="width: 16px; margin-right: 0.4rem;"></i> Shipping Info</a></li>
|
||||
<li><a href="/faq.php"><i class="fas fa-question-circle" style="width: 16px; margin-right: 0.4rem;"></i> FAQ</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user