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>
|
||||
|
||||
@@ -20,7 +20,7 @@ require_once __DIR__ . '/includes/header.php';
|
||||
$faqs = [
|
||||
'Orders & Payment' => [
|
||||
['q' => 'How do I place an order?', 'a' => 'Browse our <a href="/shop.php">shop</a>, add items to your cart, and proceed to checkout. We accept all major credit cards, debit cards, and PayPal.'],
|
||||
['q' => 'Can I modify or cancel my order?', 'a' => 'Orders can be modified or cancelled within 1 hour of placement. After that, orders enter processing and cannot be changed. Contact us immediately at hello@tomsjavajive.com if you need to make a change.'],
|
||||
['q' => 'Can I modify or cancel my order?', 'a' => 'Orders can be modified or cancelled within 1 hour of placement. After that, orders enter processing and cannot be changed. Contact us immediately at sales@tomsjavajive.com if you need to make a change.'],
|
||||
['q' => 'Is my payment information secure?', 'a' => 'Yes. All payments are processed through Stripe, a PCI-DSS Level 1 certified payment processor. We never store your card details on our servers.'],
|
||||
['q' => 'Do you offer gift cards?', 'a' => 'Yes! Digital gift cards are available in our shop and are delivered by email. They never expire.'],
|
||||
],
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ $customerUser = $isLoggedIn ? CustomerAuth::getUser() : null;
|
||||
<meta name="twitter:image" content="<?= $ogImage ?? 'https://tomsjavajive.com/assets/images/og-image.jpg' ?>">
|
||||
<?php if (empty($suppressSchema)): ?>
|
||||
<script type="application/ld+json">
|
||||
{"@context":"https://schema.org","@graph":[{"@type":["LocalBusiness","Store","FoodEstablishment"],"@id":"https://tomsjavajive.com/#business","name":"Tom's Java Jive","description":"Premium artisan coffee beans freshly roasted and shipped to your door. Specializing in single origin, signature blends, and specialty roasts from Weatherford, Texas.","url":"https://tomsjavajive.com","telephone":"+18175550120","email":"hello@tomsjavajive.com","priceRange":"$$","currenciesAccepted":"USD","paymentAccepted":"Credit Card, PayPal","servesCuisine":"Coffee","address":{"@type":"PostalAddress","addressLocality":"Weatherford","addressRegion":"TX","postalCode":"76086","addressCountry":"US"},"geo":{"@type":"GeoCoordinates","latitude":32.7554,"longitude":-97.7981},"hasOfferCatalog":{"@type":"OfferCatalog","name":"Coffee Products","itemListElement":[{"@type":"Offer","itemOffered":{"@type":"Product","name":"Single Origin Coffee Beans","description":"Hand-selected single origin beans from around the world, freshly roasted to order."}},{"@type":"Offer","itemOffered":{"@type":"Product","name":"Signature Blend Coffee","description":"Tom's signature house blends crafted for balanced, full-flavored cups."}}]}},{"@type":"WebSite","@id":"https://tomsjavajive.com/#website","url":"https://tomsjavajive.com","name":"Tom's Java Jive","publisher":{"@id":"https://tomsjavajive.com/#business"},"potentialAction":{"@type":"SearchAction","target":"https://tomsjavajive.com/shop.php?search={search_term_string}","query-input":"required name=search_term_string"}}]}
|
||||
{"@context":"https://schema.org","@graph":[{"@type":["LocalBusiness","Store","FoodEstablishment"],"@id":"https://tomsjavajive.com/#business","name":"Tom's Java Jive","description":"Premium artisan coffee beans freshly roasted and shipped to your door. Specializing in single origin, signature blends, and specialty roasts from Weatherford, Texas.","url":"https://tomsjavajive.com","telephone":"+18172662022","email":"sales@tomsjavajive.com","priceRange":"$$","currenciesAccepted":"USD","paymentAccepted":"Credit Card, PayPal","servesCuisine":"Coffee","address":{"@type":"PostalAddress","addressLocality":"Weatherford","addressRegion":"TX","postalCode":"76088","addressCountry":"US"},"geo":{"@type":"GeoCoordinates","latitude":32.7554,"longitude":-97.7981},"hasOfferCatalog":{"@type":"OfferCatalog","name":"Coffee Products","itemListElement":[{"@type":"Offer","itemOffered":{"@type":"Product","name":"Single Origin Coffee Beans","description":"Hand-selected single origin beans from around the world, freshly roasted to order."}},{"@type":"Offer","itemOffered":{"@type":"Product","name":"Signature Blend Coffee","description":"Tom's signature house blends crafted for balanced, full-flavored cups."}}]}},{"@type":"WebSite","@id":"https://tomsjavajive.com/#website","url":"https://tomsjavajive.com","name":"Tom's Java Jive","publisher":{"@id":"https://tomsjavajive.com/#business"},"potentialAction":{"@type":"SearchAction","target":"https://tomsjavajive.com/shop.php?search={search_term_string}","query-input":"required name=search_term_string"}}]}
|
||||
</script>
|
||||
<?php endif; ?>
|
||||
<?php if (!empty($breadcrumbs)): ?>
|
||||
|
||||
+1
-1
@@ -73,7 +73,7 @@ require_once __DIR__ . '/includes/header.php';
|
||||
<div class="card-body">
|
||||
<h2 style="font-size: 1.2rem; margin-bottom: 1rem;">How to Reach Us</h2>
|
||||
<ol style="padding-left: 1.25rem; color: var(--text-muted); line-height: 1.9; margin: 0;">
|
||||
<li>Email <a href="mailto:hello@tomsjavajive.com">hello@tomsjavajive.com</a> with your <strong>order number</strong> and a description of the issue.</li>
|
||||
<li>Email <a href="mailto:sales@tomsjavajive.com">sales@tomsjavajive.com</a> with your <strong>order number</strong> and a description of the issue.</li>
|
||||
<li>If your order arrived damaged, include a photo — it helps us resolve things faster.</li>
|
||||
<li>We'll respond within <strong>1 business day</strong> with next steps.</li>
|
||||
<li>Refunds are returned to your original payment method within <strong>3–5 business days</strong>.</li>
|
||||
|
||||
Reference in New Issue
Block a user