<?php
|
add_filter('jvb_schema', function($schema) {
|
return array_merge($schema, [
|
'organization' => [
|
'type' => 'LocalBusiness',
|
'name' => 'Legacy Tattoo Removal',
|
'url' => get_home_url(),
|
'description' => 'The laser techs who love tattoos: Edmonton\'s removal experts working with tattoo artists.',
|
'slogan' => 'See the Difference.',
|
'logo' => get_theme_mod('custom_logo'),
|
'foundingDate' => '2023-10-03',
|
|
'founders' => [
|
['name' => 'Madi Rawson', 'url' => 'https://tattysoap.ca'],
|
['name' => 'Heidi Freschauf'],
|
['name' => 'Jake Vanderwerf', 'url' => 'https://jakevan.ca'],
|
],
|
|
'sameAs' => [
|
['url' => 'https://www.instagram.com/LegacyTattooRemoval'],
|
[ 'url' => 'https://www.facebook.com/LegacyTattooRemoval'],
|
[ 'url' => 'https://www.tiktok.com/@legacytattooremoval'],
|
[ 'url' => 'https://bsky.app/profile/legacytattooremoval.ca']
|
],
|
|
// Contact
|
'telephone' => '+1-825-925-7398',
|
'email' => 'info@legacytattooremoval.ca',
|
|
// Address - note the key names
|
'address' => [
|
'street' => '10612 124 Street NW', // was 'street_address'
|
'city' => 'Edmonton', // was 'locality'
|
'province' => 'AB', // was 'region'
|
'postal_code' => 'T5N 1S2',
|
'country' => 'CA',
|
],
|
|
// Geo - note the key names
|
'geo' => [
|
'lat' => '53.5461', // was 'latitude'
|
'lng' => '-113.5218', // was 'longitude'
|
],
|
|
// Business details
|
'priceRange' => '$$',
|
'paymentAccepted' => ['Cash', 'Credit Card', 'Debit Card', 'E-Transfer'],
|
'currenciesAccepted' => ['CAD'],
|
'areaServed' => [
|
['name' => 'Edmonton'],
|
['name' => 'St. Albert'],
|
['name' => 'Sherwood Park'],
|
['name' => 'Leduc'],
|
['name' => 'Spruce Grove'],
|
],
|
|
// Hours - note the key names
|
'openingHours' => [
|
'wednesday' => ['opens' => '10:00', 'closes' => '18:00'],
|
'thursday' => ['opens' => '10:00', 'closes' => '18:00'],
|
'friday' => ['opens' => '10:00', 'closes' => '18:00'],
|
'saturday' => ['opens' => '10:00', 'closes' => '18:00'],
|
'sunday' => ['opens' => '10:00', 'closes' => '18:00'],
|
],
|
|
// Services as offer catalog
|
'hasOfferCatalog' => [
|
'source' => 'manual',
|
'manual_items' => [
|
[
|
'type' => 'Service',
|
'name' => 'Tattoo Fading for Cover Up Tattoos',
|
'description' => 'Precise laser fading to prepare your skin for a new tattoo. We work directly with your tattoo artist to target exactly what\'s in the way.',
|
'price' => '$150-$400/treatment'
|
],
|
[
|
'type' => 'Service',
|
'name' => 'Complete Tattoo Removal',
|
'description' => 'Full removal of unwanted tattoos using PicoWay laser technology. Safe for all skin types with minimal scarring.',
|
'price' => '$150-$400/treatment'
|
],
|
[
|
'type' => 'Service',
|
'name' => 'Permanent Makeup Removal',
|
'description' => 'Specialized removal of cosmetic ink including microbladed brows, freckles, and scalp micropigmentation (SMP).',
|
'price' => '$200'
|
],
|
[
|
'type' => 'Service',
|
'name' => 'Scalp Micro Pigmentation Removal',
|
'description' => 'Specialized removal of scalp micro pigmentation (SMP).',
|
'price' => '$200 - $400/treatment'
|
],
|
[
|
'type' => 'Service',
|
'name' => 'Pro Bono Removal Services',
|
'description' => 'Free and sliding-scale tattoo removal for gang-related, hate symbols, domestic violence, and human trafficking tattoos.',
|
],
|
]
|
],
|
|
// Rating - note the structure
|
'aggregateRating' => [
|
'value' => 5,
|
'count' => 103,
|
'best' => 5,
|
'worst' => 1,
|
],
|
],
|
|
// Website settings (optional overrides)
|
'website' => [
|
'name' => 'Legacy Tattoo Removal',
|
'description' => 'Edmonton\'s premier laser tattoo removal clinic',
|
'inLanguage' => 'en-CA',
|
'potentialAction' => [
|
[
|
'name' => 'Search',
|
'type' => 'searchAction',
|
'target' => '/?s={query}',
|
],
|
[
|
'type' => 'scheduleAction',
|
'name' => 'Book a Free Consultation',
|
'target' => '/book-consult/',
|
'description' => 'Schedule your free consultation today',
|
],
|
[
|
'type' => 'communicateAction',
|
'name' => 'Contact Us',
|
'target' => '/contact/',
|
'description' => 'Get in touch with our team',
|
],
|
],
|
],
|
]);
|
});
|