or share URL
// Services (grouped buckets like on Home)
$service_buckets = get_field(‘service_buckets’); // repeater from Home supported
// Before & After (optional)
$baa_intro_title = get_field(‘baa_intro_title’);
$baa_intro_text = get_field(‘baa_intro_text’);
$before_and_after= have_rows(‘before_and_after_slider’);
// Team (reuse Home structure via cr_team group)
$cr_team = get_field(‘cr_team’);
// Reviews (Elfsight or shortcode)
$reviews_title = get_field(‘reviews_title’);
$reviews_embed = get_field(‘reviews_embed’); // shortcode or HTML
// Stats (optional, reuse Home)
$stats_title = get_field(‘stats_title’);
$stats_headline = get_field(‘stats_headline’);
$stats_intro = get_field(‘stats_intro’);
$stats = get_field(‘stats’);
// Giftcards / CTA row (optional, reuse Home cr_giftcards)
$cr_giftcards = get_field(‘cr_giftcards’);
// Organization details for JSON-LD (per-location overrideable)
$org_name = get_field(‘org_name’);
$org_phone = get_field(‘org_phone’);
$org_url = get_field(‘org_url’) ?: get_site_url();
$org_logo = get_field(‘org_logo’);
$street_address = get_field(‘street_address’);
$geo_lat = get_field(‘geo_lat’);
$geo_lng = get_field(‘geo_lng’);
$same_as = get_field(‘same_as’); // repeater of URLs
// Breadcrumb parents
$locations_parent_url = get_field(‘locations_parent_url’); // e.g., /locations/
?>