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:
2026-06-15 18:49:24 +00:00
parent 15bcef262f
commit c1c926a416
4 changed files with 12 additions and 12 deletions
+9 -9
View File
@@ -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;">MonFri, 9am5pm 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 &amp; 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 &amp; 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>