Jake Vanderwerf
2025-12-23 76d68c97f572120dc75d0501cc82acf4022d6b33
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<?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',
                ],
            ],
        ],
    ]);
});