{"id":1092,"date":"2024-04-09T19:01:22","date_gmt":"2024-04-09T19:01:22","guid":{"rendered":"https:\/\/detroitzoo.wpenginepowered.com\/?page_id=1092"},"modified":"2025-12-09T12:03:18","modified_gmt":"2025-12-09T17:03:18","slug":"membership","status":"publish","type":"page","link":"https:\/\/detroitzoo.org\/membership\/","title":{"rendered":"Membership"},"content":{"rendered":"\n<div class=\"module-static-hero\">\n    <static-hero :model='{\"mediaType\":\"image\",\"imageDesktop\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Mask-group-1-1.png\",\"filename\":\"Mask-group-1-1.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"imageMobile\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Mask-group-2-1.png\",\"filename\":\"Mask-group-2-1.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"videoDesktop\":null,\"videoMobile\":null,\"heading\":\"Join our Zoo Family\",\"description\":\"&lt;p&gt;Members get more. With a Detroit Zoo membership, you&amp;#8217;ll enjoy endless education and great perks such as unlimited admission, free parking, discounted event tickets and so much more. A membership pays for itself in as few as two visits!&lt;\\\/p&gt;\\n\",\"playLabel\":\"Play\",\"pauseLabel\":\"Pause\",\"links\":[{\"title\":\"Explore Memberships\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/membership\\\/#exploreMemberships\",\"target\":\"\",\"scheme\":\"primary\",\"icon\":\"none\",\"form\":\"\"},{\"title\":\"Renew a Membership\",\"url\":\"https:\\\/\\\/webstore.detroitzoo.org\\\/WebStore\\\/shop\\\/PassLookup.aspx?CG=memberships&#038;C=renew&#038;RedirectURL=Renewal&#038;SalesChannelDetailID=568&#038;_ga=2.69662740.581605350.1711978100-2049464027.1708356640&#038;_gac=1.49341396.1711997218.CjwKCAjwtqmwBhBVEiwAL-WAYZRCbmu6mwc39vqp5HrYjgNKhd8oMmOTLHb6x2jq_YJDeCkxZpw3MxoCAuQQAvD_BwE\",\"target\":\"_blank\",\"scheme\":\"secondary\",\"icon\":\"none\",\"form\":\"\"}]}'><\/static-hero>\n<\/div>\n\n<style>\n<\/style>\n\n\n<div class=\"module-image-with-single-content\">\n  <image-with-single-content :model='{\"tagline\":\"Double The Reasons to Become A Member\",\"heading\":\"Black Friday Flash Sale: $10 off all memberships!\",\"description\":\"&lt;p&gt;This Black Friday, SAVE on your Detroit Zoo membership! For one day only, enjoy $10 off any membership level and make your year brighter with endless trips to the Zoo, free parking, exclusive discounts and so much more.&lt;br \\\/&gt;\\n&lt;em&gt;Offer applies to any level of new, renewing or gift membership. No promo code needed &mdash; discount is automatically applied at checkout.&lt;\\\/em&gt;&lt;\\\/p&gt;\\n\",\"mediaType\":\"image\",\"image\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/11\\\/blkFriday2.png\",\"filename\":\"blkFriday2.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"video\":null,\"image_link\":\"\",\"column_width\":\"50%\",\"links\":[],\"alignment\":\"right\",\"backgroundColorFullWidth\":false,\"backgroundColor\":\"#005e71\",\"fontColorScheme\":\"light\",\"anchorID\":\"hideNow\"}'><\/image-with-single-content>\n<\/div>\n\n\n<style>\n.membership__plan-package .membership__bundle:nth-of-type(2) \n.membership__plan-package-prices .colored-tag.colored-tag--large.colored-tag--bold {\n    display: none !important;\n}\n.member-benefits img.member-benefits__benefit-icon {\n    padding-bottom: 20px;\n}\n#hideNow {\n    display:none;\n}\n.membership__bundle-content .colored-tag.colored-tag--large.colored-tag--bold {\n    display: none;\n}\n.membership__bundle {\n    display: none;\n}\n<\/style>\n<!--<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n    const blackFridayElement = document.getElementById(\"blackFriday\");\n    if (!blackFridayElement) return;\n\n    const now = new Date();\n    const showTime = new Date(\"2024-11-28T23:59:00\"); \/\/ Thursday, Nov 28, 11:59 PM\n    const hideTime = new Date(\"2024-11-29T23:59:00\"); \/\/ Friday, Nov 29, 11:59 PM\n\n    if (now >= showTime && now <= hideTime) {\n        blackFridayElement.style.display = \"block\";\n    } else {\n        blackFridayElement.style.display = \"none\";\n    }\n});\n<\/script>-->\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  const hash = window.location.hash;\n\n  \/\/ Normalize hash (lowercase, remove leading #)\n  const anchor = hash ? hash.toLowerCase().replace('#', '') : '';\n\n  const openAccordionByText = (text) => {\n    const buttons = document.querySelectorAll('.membership__bundle-btn');\n    buttons.forEach(btn => {\n      const heading = btn.querySelector('.membership__bundle-btn-heading span');\n      if (heading && heading.textContent.toLowerCase().includes(text)) {\n        \/\/ Only click if not already expanded\n        if (btn.getAttribute(\"aria-expanded\") === \"false\") {\n          btn.click();\n        }\n      }\n    });\n  };\n\n  if (anchor === 'dragonpass') {\n    openAccordionByText('dragon pass');\n  } else if (anchor === 'attractionpass') {\n    openAccordionByText('attraction pass');\n  }\n});\n<\/script>\n<script>\n\/\/ Hide Dragon Pass\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n  function hideDragonPass() {\n    document.querySelectorAll(\".membership__plan-package\").forEach(function (pkg) {\n      const bundles = pkg.querySelectorAll(\".membership__bundle\");\n      if (bundles.length > 0) {\n        bundles[0].style.display = \"none\";\n      }\n    });\n  }\n\n  \/\/ Initial run after page loads\n  setTimeout(hideDragonPass, 500);\n\n  \/\/ Watch for tab changes or dynamic content\n  const observer = new MutationObserver(function () {\n    hideDragonPass();\n  });\n\n  observer.observe(document.body, {\n    childList: true,\n    subtree: true\n  });\n});\n\n<\/script>\n\n\n\n<div class=\"module-member-benefits\">\n  <member-benefits :model='{\"heading\":\"Why Become a Member?\",\"description\":\"&lt;p&gt;&amp;nbsp;&lt;\\\/p&gt;\\n\",\"cta\":{\"title\":\"See Full Benefit List\",\"url\":\"\\\/\",\"target\":\"\",\"scheme\":\"secondary\",\"icon\":\"none\",\"form\":\"\"},\"badges\":[{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/unlimited-admission.png\",\"filename\":\"unlimited-admission.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Unlimited admission\",\"description\":\"&lt;p&gt;Enjoy unlimited daytime admission all year long&lt;\\\/p&gt;\\n\"},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/free-parking.png\",\"filename\":\"free-parking.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Free Parking Always&nbsp;\",\"description\":\"&lt;p&gt;Park for f&lt;span class=\\\"outlook-search-highlight\\\"&gt;re&lt;\\\/span&gt;e &amp;#8211; even during special events&lt;\\\/p&gt;\\n\"},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/10-off.png\",\"filename\":\"10-off.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"NEW! 10% Off Ticketed Events\",\"description\":\"&lt;p&gt;Exclusive 10% discount on ticketed special events.*&lt;\\\/p&gt;\\n\"},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/exclusive-member-discounts.png\",\"filename\":\"exclusive-member-discounts.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Exclusive Discounts on Programs, Experiences and Merch\",\"description\":\"&lt;p&gt;&lt;span class=\\\"colour\\\"&gt;&lt;span class=\\\"font\\\"&gt;&lt;span class=\\\"size\\\"&gt;Save on Zoo experiences, merchandise, education programs and mo&lt;span class=\\\"outlook-search-highlight\\\"&gt;re&lt;\\\/span&gt;&lt;\\\/span&gt;&lt;\\\/span&gt;&lt;\\\/span&gt;&lt;\\\/p&gt;\\n\"},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/freeevents.png\",\"filename\":\"freeevents.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Free Admission to Select Events*\",\"description\":\"&lt;p&gt;Including Greenfest, Bunnyville, the Wild Summer Nights Concert Series, Sensory-Friendly Hours and more &lt;\\\/p&gt;\\n\"},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/reciprocal.png\",\"filename\":\"reciprocal.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Reciprocal Admission Benefits\",\"description\":\"&lt;p&gt;Receive discounted admission at participating zoos and aquariums nationwide&lt;\\\/p&gt;\\n\"}],\"popHeading\":\"Membership Benefits\",\"popupDescription\":\"&lt;p&gt;*Excludes Run Wild and Sunset at the Zoo fundraising events&lt;\\\/p&gt;\\n\"}'><\/member-benefits>\n<\/div>\n\n\n<div class=\"module-rich-text-area\">\n    <rich-text-area :model='{\"text\":\"&lt;style&gt;\\nsection#exploreMemberships {\\n    margin-top: -100px;\\n}\\n&lt;\\\/style&gt;\\n&lt;div style=\\\"display:none; margin-top: -100px;\\\"&gt;&lt;\\\/div&gt;\\n\",\"anchorID\":\"exploreMemberships\",\"backgroundColor\":\"\"}'><\/rich-text-area>\n<\/div>\n\n<style>\n<\/style>\n\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n  \/\/ Find all bundle elements\n  const bundles = document.querySelectorAll(\".membership__bundle\");\n\n  bundles.forEach(bundle => {\n    const headingText = bundle.querySelector(\".membership__bundle-btn-heading span\")?.textContent;\n\n    \/\/ Check if this is an 'Attraction Pass' card\n    if (headingText && headingText.trim() === \"Attraction Pass\") {\n      \/\/ Find all price tags within this bundle\n      const priceTags = bundle.querySelectorAll(\".colored-tag\");\n\n      priceTags.forEach(tag => {\n        if (tag.textContent.trim() === \"$*\") {\n          tag.style.display = \"none\";\n        }\n      });\n    }\n  });\n});\n\n<\/script>\n\n\n\n<div class=\"module-membership\">\n  <membership :model='{\"memberships\":[{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/people-1.png\",\"filename\":\"people-1.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Individual\",\"purchaseLink\":{\"title\":\"individual\",\"url\":\"https:\\\/\\\/webstore.detroitzoo.org\\\/webstore\\\/shop\\\/viewItems.aspx?cg=memberships&#038;c=individual&#038;_ga=2.69662740.581605350.1711978100-2049464027.1708356640&#038;_gac=1.49341396.1711997218.CjwKCAjwtqmwBhBVEiwAL-WAYZRCbmu6mwc39vqp5HrYjgNKhd8oMmOTLHb6x2jq_YJDeCkxZpw3MxoCAuQQAvD_BwE\",\"target\":\"_blank\"},\"packages\":[{\"title\":\"Individual\",\"description\":\"&lt;p&gt;Daytime admission for &lt;strong&gt;one named adult&lt;\\\/strong&gt;.&lt;\\\/p&gt;\\n\",\"discountCost\":\"85\",\"cost\":\"95\",\"cost_in_html\":\"<div class=\\\"price_html\\\">\\r\\n<div class=\\\"with-background\\\">\\r\\n<span class=\\\"original-price\\\">$85<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$75*<\\\/span>\\r\\n<\\\/div>\\r\\n<div class=\\\"no-background\\\">\\r\\n<span class=\\\"original-price\\\">$95<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$85<\\\/span>\\r\\n<\\\/div>\\r\\n<\\\/div>\\r\\n<style>\\r\\n<\\\/style>\",\"bundles\":[{\"title\":\"Dragon Pass\",\"description\":\"&lt;p&gt;Add more magic to your membership! For a limited time, upgrade with the Dragon Pass for unlimited access to Dragon Forest for only $60\\\/membership.*&lt;\\\/p&gt;\\n&lt;p&gt;*The Dragon Pass rate will increase to $60 on June 1. &lt;strong&gt;Please note, this is an addon and not part of the total membership cost.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"35\",\"cost\":\"45\"},{\"title\":\"Attraction Pass\",\"description\":\"&lt;p&gt;Experience everything the Zoo has to offer! Upgrade your annual membership with the Attractions Pass* to your annual membership and for unlimited access to Dragon Forest, the 4D Theater, the train and carousel.&lt;\\\/p&gt;\\n&lt;p&gt;*The Attractions Pass ranges from $70 to $250\\\/membership depending on membership type. &lt;strong&gt;Please note, this is an addon and not part of the total membership cost.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"\",\"cost\":\"70\"}]},{\"title\":\"Individual Plus\",\"description\":\"&lt;p&gt;Daytime admission for&nbsp;&lt;strong&gt;one named adult&lt;\\\/strong&gt;&nbsp;and&nbsp;&lt;strong&gt;one unnamed guest.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"121\",\"cost\":\"131\",\"cost_in_html\":\"<div class=\\\"price_html\\\">\\r\\n<div class=\\\"with-background\\\">\\r\\n<span class=\\\"original-price\\\">$121<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$111*<\\\/span>\\r\\n<\\\/div>\\r\\n<div class=\\\"no-background\\\">\\r\\n<span class=\\\"original-price\\\">$131<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$121<\\\/span>\\r\\n<\\\/div>\\r\\n<\\\/div>\",\"bundles\":[{\"title\":\"Dragon Pass\",\"description\":\"&lt;p&gt;Add more magic to your membership! For a limited time, upgrade with the Dragon Pass for unlimited access to Dragon Forest for only $60\\\/membership.*&lt;\\\/p&gt;\\n&lt;p&gt;*The Dragon Pass rate will increase to $60 on June 1. &lt;strong&gt;Please note, this is an addon and not part of the total membership cost.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"50\",\"cost\":\"60\"},{\"title\":\"Attraction Pass\",\"description\":\"&lt;p&gt;Experience everything the Zoo has to offer! Upgrade your annual membership with the Attractions Pass* to your annual membership and for unlimited access to Dragon Forest, the 4D Theater, the train and carousel.&lt;\\\/p&gt;\\n&lt;p&gt;*The Attractions Pass ranges from $70 to $250\\\/membership depending on membership type. &lt;strong&gt;Please note, this is an addon and not part of the total membership cost.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"\",\"cost\":\"125\"}]},{\"title\":\"Dual\",\"description\":\"&lt;p&gt;This package includes&nbsp;&lt;strong&gt;two named adults.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"121\",\"cost\":\"131\",\"cost_in_html\":\"<div class=\\\"price_html\\\">\\r\\n<div class=\\\"with-background\\\">\\r\\n<span class=\\\"original-price\\\">$121<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$111*<\\\/span>\\r\\n<\\\/div>\\r\\n<div class=\\\"no-background\\\">\\r\\n<span class=\\\"original-price\\\">$131<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$121<\\\/span>\\r\\n<\\\/div>\\r\\n<\\\/div>\",\"bundles\":[{\"title\":\"Dragon Pass\",\"description\":\"&lt;p&gt;Add more magic to your membership! For a limited time, upgrade with the Dragon Pass for unlimited access to Dragon Forest for only $60\\\/membership.*&lt;\\\/p&gt;\\n&lt;p&gt;*The Dragon Pass rate will increase to $60 on June 1. &lt;strong&gt;Please note, this is an addon and not part of the total membership cost.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"50\",\"cost\":\"60\"},{\"title\":\"Attraction Pass\",\"description\":\"&lt;p&gt;Experience everything the Zoo has to offer! Upgrade your annual membership with the Attractions Pass* to your annual membership and for unlimited access to Dragon Forest, the 4D Theater, the train and carousel.&lt;\\\/p&gt;\\n&lt;p&gt;*The Attractions Pass ranges from $70 to $250\\\/membership depending on membership type. &lt;strong&gt;Please note, this is an addon and not part of the total membership cost.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"\",\"cost\":\"125\"}]}]},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/people-3.png\",\"filename\":\"people-3.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Family\",\"purchaseLink\":{\"title\":\"family\",\"url\":\"https:\\\/\\\/webstore.detroitzoo.org\\\/webstore\\\/shop\\\/viewItems.aspx?cg=memberships&c=family&_ga=2.69662740.581605350.1711978100-2049464027.1708356640&_gac=1.49341396.1711997218.CjwKCAjwtqmwBhBVEiwAL-WAYZRCbmu6mwc39vqp5HrYjgNKhd8oMmOTLHb6x2jq_YJDeCkxZpw3MxoCAuQQAvD_BwE\",\"target\":\"_blank\"},\"packages\":[{\"title\":\"Family\",\"description\":\"&lt;p&gt;This package includes &lt;strong&gt;two named adults&lt;\\\/strong&gt; and &lt;strong&gt;four children.&lt;\\\/strong&gt;**&lt;\\\/p&gt;\\n\",\"discountCost\":\"139\",\"cost\":\"149\",\"cost_in_html\":\"<div class=\\\"price_html\\\">\\r\\n<div class=\\\"with-background\\\">\\r\\n<span class=\\\"original-price\\\">$139<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$129*<\\\/span>\\r\\n<\\\/div>\\r\\n<div class=\\\"no-background\\\">\\r\\n<span class=\\\"original-price\\\">$149<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$139<\\\/span>\\r\\n<\\\/div>\\r\\n<\\\/div>\",\"bundles\":[{\"title\":\"Dragon Pass\",\"description\":\"&lt;p&gt;Add more magic to your membership! For a limited time, upgrade with the Dragon Pass for unlimited access to Dragon Forest for only $60\\\/membership.*&lt;\\\/p&gt;\\n&lt;p&gt;*The Dragon Pass rate will increase to $60 on June 1. &lt;strong&gt;Please note, this is an addon and not part of the total membership cost.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"50\",\"cost\":\"60\"},{\"title\":\"Attraction Pass\",\"description\":\"&lt;p&gt;Experience everything the Zoo has to offer! Upgrade your annual membership with the Attractions Pass* to your annual membership and for unlimited access to Dragon Forest, the 4D Theater, the train and carousel.&lt;\\\/p&gt;\\n&lt;p&gt;*The Attractions Pass ranges from $70 to $250\\\/membership depending on membership type. &lt;strong&gt;Please note, this is an addon and not part of the total membership cost.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"\",\"cost\":\"250\"}]},{\"title\":\"Single Guardian\",\"description\":\"&lt;p&gt;This package includes&nbsp;&lt;strong&gt;1 named adult&lt;\\\/strong&gt;&nbsp;and&nbsp;&lt;strong&gt;four children&lt;\\\/strong&gt;.**&lt;\\\/p&gt;\\n\",\"discountCost\":\"130\",\"cost\":\"140\",\"cost_in_html\":\"<div class=\\\"price_html\\\">\\r\\n<div class=\\\"with-background\\\">\\r\\n<span class=\\\"original-price\\\">$130<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$120*<\\\/span>\\r\\n<\\\/div>\\r\\n<div class=\\\"no-background\\\">\\r\\n<span class=\\\"original-price\\\">$140<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$130<\\\/span>\\r\\n<\\\/div>\\r\\n<\\\/div>\",\"bundles\":[{\"title\":\"Dragon Pass\",\"description\":\"&lt;p&gt;Add more magic to your membership! For a limited time, upgrade with the Dragon Pass for unlimited access to Dragon Forest for only $50\\\/membership.*&lt;\\\/p&gt;\\n&lt;p&gt;*The Dragon Pass rate will increase to $60 on June 1.&lt;\\\/p&gt;\\n\",\"discountCost\":\"50\",\"cost\":\"60\"},{\"title\":\"Attraction Pass\",\"description\":\"&lt;p&gt;Experience everything the Zoo has to offer! Upgrade your annual membership with the Attractions Pass* to your annual membership and for unlimited access to Dragon Forest, the 4D Theater, the train and carousel.&lt;\\\/p&gt;\\n&lt;p&gt;*The Attractions Pass ranges from $70 to $250\\\/membership depending on membership type.&lt;\\\/p&gt;\\n\",\"discountCost\":\"\",\"cost\":\"250\"}]}]},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/people-3.png\",\"filename\":\"people-3.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Supporter\",\"purchaseLink\":{\"title\":\"Supporter\",\"url\":\"https:\\\/\\\/webstore.detroitzoo.org\\\/webstore\\\/shop\\\/viewItems.aspx?cg=memberships&c=supporter\",\"target\":\"_blank\"},\"packages\":[{\"title\":\"Supporter\",\"description\":\"&lt;p&gt;This package includes &lt;strong&gt;two named adults, four children&lt;\\\/strong&gt;**&lt;strong&gt;, two guests&lt;\\\/strong&gt; and &lt;strong&gt;additional discounts for experiences and event site rentals.&lt;\\\/strong&gt;&lt;\\\/p&gt;\\n\",\"discountCost\":\"290\",\"cost\":\"300\",\"cost_in_html\":\"<div class=\\\"price_html\\\">\\r\\n<div class=\\\"with-background\\\">\\r\\n<span class=\\\"original-price\\\">$290<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$280*<\\\/span>\\r\\n<\\\/div>\\r\\n<div class=\\\"no-background\\\">\\r\\n<span class=\\\"original-price\\\">$300<\\\/span>\\r\\n<span class=\\\"discounted-price\\\">$290<\\\/span>\\r\\n<\\\/div>\\r\\n<\\\/div>\",\"bundles\":[{\"title\":\"Dragon Pass\",\"description\":\"&lt;p&gt;Add more magic to your membership! For a limited time, upgrade with the Dragon Pass for unlimited access to Dragon Forest for only $50\\\/membership.*&lt;\\\/p&gt;\\n&lt;p&gt;*The Dragon Pass rate will increase to $60 on June 1.&lt;\\\/p&gt;\\n\",\"discountCost\":\"50\",\"cost\":\"60\"},{\"title\":\"Attraction Pass\",\"description\":\"&lt;p&gt;Experience everything the Zoo has to offer! Upgrade your annual membership with the Attractions Pass* to your annual membership and for unlimited access to Dragon Forest, the 4D Theater, the train and carousel.&lt;\\\/p&gt;\\n&lt;p&gt;*The Attractions Pass ranges from $70 to $250\\\/membership depending on membership type.&lt;\\\/p&gt;\\n\",\"discountCost\":\"\",\"cost\":\"250\"}]}]}],\"heading\":\"Choose the Membership That Suits Your Next Adventure\",\"description\":\"&lt;p&gt;With so many options available, the Detroit Zoo has the perfect membership to meet your needs. Select individual, companion or family below to see applicable options.&lt;\\\/p&gt;\\n&lt;p&gt;&lt;!--&lt;strong&gt;Add more magic to your membership!&lt;\\\/strong&gt; For a limited time, upgrade with the Dragon Pass\\u202ffor unlimited access to\\u202fthe &lt;a href=\\\"https:\\\/\\\/detroitzoo.org\\\/events\\\/dragon-forest\\\/\\\" rel=\\\"noopener\\\" target=\\\"_blank\\\"&gt;Dragon Forest&lt;\\\/a&gt; for only $60\\\/membership.**--&gt;&lt;br \\\/&gt;\\n&lt;span style=\\\"font-size: 12px;\\\"&gt;*Existing members can add the pass by calling customer service at (248) 541-5717 or visiting the membership booth at the Zoo. &lt;!--&lt;br \\\/&gt;**The Dragon Pass\\u202frate will increase to $60 on June 1.--&gt;&lt;\\\/span&gt;&lt;\\\/p&gt;\\n&lt;div id=\\\"dragonPass\\\"&gt;&lt;\\\/div&gt;\\n&lt;div id=\\\"attractionPass\\\"&gt;&lt;\\\/div&gt;\\n\",\"mainLinkLabel\":\"Purchase Membership\",\"secondaryLink\":{\"title\":\"Give as Gift\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/gift-membership\\\/\",\"target\":\"_blank\"},\"disclaimer\":\"&lt;p style=\\\"text-align: center;\\\"&gt;* Includes $10 discount for tri-county residents.&lt;br \\\/&gt;\\n** &lt;i&gt;Children must be ages 2-18. Children under the age of 2 enter the Zoo for free. &lt;\\\/i&gt;&lt;\\\/p&gt;\\n\"}'><\/membership>\n<\/div>\n\n\n<div class=\"module-membership-addons\">\n  <membership-addons :model='{\"addons\":[{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/cart.png\",\"filename\":\"cart.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Nanny or Caregiver\",\"description\":\"&lt;p&gt;&lt;span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\" dir=\\\"ltr\\\"&gt;Add up to one nanny to accompany the named children in the absence of a primary member or a caregiver to accompany a primary member with different abilities.&lt;\\\/span&gt;&lt;\\\/p&gt;\\n\",\"cost\":\"50\"},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/cart.png\",\"filename\":\"cart.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Unnamed Guest\",\"description\":\"&lt;p&gt;&lt;span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\" dir=\\\"ltr\\\"&gt;Add an additional guest who can accompany a primary member on each visit.&lt;\\\/span&gt;&lt;\\\/p&gt;\\n\",\"cost\":\"55\"},{\"icon\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/cart.png\",\"filename\":\"cart.png\",\"description\":\"\",\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\"},\"title\":\"Unnamed Child*\",\"description\":\"&lt;p&gt;&lt;span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\" dir=\\\"ltr\\\"&gt;Add an additional child guest who can accompany a primary member on each visit.&lt;\\\/span&gt;&lt;\\\/p&gt;\\n&lt;p style=\\\"font-size: 14px;\\\"&gt;&lt;em&gt;*must be purchased in conjunction with memberships that cover children&lt;\\\/em&gt;&lt;\\\/p&gt;\\n\",\"cost\":\"30\"}],\"heading\":\"Add-on Options\",\"description\":\"&lt;p&gt;&lt;span class=\\\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\\\" dir=\\\"ltr\\\"&gt;Want to add to the fun? Choose from up to four different add-on options! Add-on selections can be purchased online, in person at the &lt;strong&gt;Tickets and Membership Sales Booth&lt;\\\/strong&gt;&nbsp;located near the parking structure ramp or by calling&lt;br \\\/&gt;\\n&lt;a href=\\\"tel:2485415717\\\"&gt;(248) 541-5717&lt;\\\/a&gt;.&lt;\\\/span&gt;&lt;\\\/p&gt;\\n\"}'><\/membership-addons>\n<\/div>\n\n\n<div class=\"module-icon-badge-grid\">\n  <icon-badge-grid :model='{\"badges\":[{\"icon\":{\"ID\":1512,\"id\":1512,\"title\":\"Group 63\",\"filename\":\"Group-63.png\",\"filesize\":4338,\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"link\":\"https:\\\/\\\/detroitzoo.org\\\/membership\\\/group-63-3\\\/\",\"alt\":\"\",\"author\":\"13\",\"description\":\"\",\"caption\":\"\",\"name\":\"group-63-3\",\"status\":\"inherit\",\"uploaded_to\":1092,\"date\":\"2024-04-16 21:22:05\",\"modified\":\"2024-04-16 21:22:05\",\"menu_order\":0,\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https:\\\/\\\/detroitzoo.org\\\/wp-includes\\\/images\\\/media\\\/default.png\",\"width\":144,\"height\":144,\"sizes\":{\"thumbnail\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"thumbnail-width\":144,\"thumbnail-height\":144,\"medium\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"medium-width\":144,\"medium-height\":144,\"medium_large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"medium_large-width\":144,\"medium_large-height\":144,\"large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"large-width\":144,\"large-height\":144,\"1536x1536\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"1536x1536-width\":144,\"1536x1536-height\":144,\"2048x2048\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"2048x2048-width\":144,\"2048x2048-height\":144,\"gform-image-choice-sm\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"gform-image-choice-sm-width\":144,\"gform-image-choice-sm-height\":144,\"gform-image-choice-md\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"gform-image-choice-md-width\":144,\"gform-image-choice-md-height\":144,\"gform-image-choice-lg\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-63.png\",\"gform-image-choice-lg-width\":144,\"gform-image-choice-lg-height\":144}},\"title\":\"Accessibility\",\"description\":\"&lt;p&gt;We are committed to being a welcoming, accessible and exclusive space for all.&lt;\\\/p&gt;\\n\",\"cta\":{\"title\":\"Learn More\",\"url\":\"\\\/visit\\\/accessibility\\\/\",\"target\":\"\"}},{\"icon\":{\"ID\":1513,\"id\":1513,\"title\":\"Group 65\",\"filename\":\"Group-65.png\",\"filesize\":3989,\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"link\":\"https:\\\/\\\/detroitzoo.org\\\/membership\\\/group-65-2\\\/\",\"alt\":\"\",\"author\":\"13\",\"description\":\"\",\"caption\":\"\",\"name\":\"group-65-2\",\"status\":\"inherit\",\"uploaded_to\":1092,\"date\":\"2024-04-16 21:22:07\",\"modified\":\"2024-04-16 21:22:07\",\"menu_order\":0,\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https:\\\/\\\/detroitzoo.org\\\/wp-includes\\\/images\\\/media\\\/default.png\",\"width\":144,\"height\":144,\"sizes\":{\"thumbnail\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"thumbnail-width\":144,\"thumbnail-height\":144,\"medium\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"medium-width\":144,\"medium-height\":144,\"medium_large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"medium_large-width\":144,\"medium_large-height\":144,\"large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"large-width\":144,\"large-height\":144,\"1536x1536\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"1536x1536-width\":144,\"1536x1536-height\":144,\"2048x2048\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"2048x2048-width\":144,\"2048x2048-height\":144,\"gform-image-choice-sm\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"gform-image-choice-sm-width\":144,\"gform-image-choice-sm-height\":144,\"gform-image-choice-md\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"gform-image-choice-md-width\":144,\"gform-image-choice-md-height\":144,\"gform-image-choice-lg\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-65.png\",\"gform-image-choice-lg-width\":144,\"gform-image-choice-lg-height\":144}},\"title\":\"FAQs \",\"description\":\"&lt;p&gt;Still have questions? Explore our list of frequently asked questions for all the answers you&rsquo;re looking for.&lt;\\\/p&gt;\\n\",\"cta\":{\"title\":\"Learn More\",\"url\":\"\\\/visit\\\/frequently-asked-questions\\\/\",\"target\":\"\"}}]}'><\/icon-badge-grid>\n<\/div>\n\n\n<div class=\"module-promo-bar\">\n  <promo-bar :model='{\"heading\":\"Digital Membership Card\",\"description\":\"&lt;p&gt;Members seeking to download a digital membership card can do so by clicking the button below and following the prompts.&lt;\\\/p&gt;\\n\",\"image\":{\"alt\":\"\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Frame-424.svg\",\"filename\":\"Frame-424.svg\",\"description\":\"\",\"mime_type\":\"image\\\/svg+xml\",\"type\":\"image\",\"subtype\":\"svg+xml\"},\"links\":[{\"title\":\"Get a digital membership card\",\"url\":\"https:\\\/\\\/detroitzoo.org\\\/digital-membership-cards\",\"target\":\"\",\"scheme\":\"primary\",\"icon\":\"none\",\"form\":\"\"}]}'><\/promo-bar>\n<\/div>\n\n\n<div class=\"module-full-width-badge\">\n  <full-width-badge :model='{\"imageDesktop\":{\"ID\":1560,\"id\":1560,\"title\":\"Group-1\",\"filename\":\"Group-1-e1730399900648.png\",\"filesize\":1496817,\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648.png\",\"link\":\"https:\\\/\\\/detroitzoo.org\\\/membership\\\/group-1\\\/\",\"alt\":\"\",\"author\":\"13\",\"description\":\"\",\"caption\":\"\",\"name\":\"group-1\",\"status\":\"inherit\",\"uploaded_to\":1092,\"date\":\"2024-04-22 16:49:20\",\"modified\":\"2024-04-22 16:49:20\",\"menu_order\":0,\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https:\\\/\\\/detroitzoo.org\\\/wp-includes\\\/images\\\/media\\\/default.png\",\"width\":1440,\"height\":560,\"sizes\":{\"thumbnail\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648-150x150.png\",\"thumbnail-width\":150,\"thumbnail-height\":150,\"medium\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648-300x117.png\",\"medium-width\":300,\"medium-height\":117,\"medium_large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648-768x299.png\",\"medium_large-width\":768,\"medium_large-height\":299,\"large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648-1024x398.png\",\"large-width\":1024,\"large-height\":398,\"1536x1536\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648.png\",\"1536x1536-width\":1440,\"1536x1536-height\":560,\"2048x2048\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648.png\",\"2048x2048-width\":1440,\"2048x2048-height\":560,\"gform-image-choice-sm\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648.png\",\"gform-image-choice-sm-width\":300,\"gform-image-choice-sm-height\":117,\"gform-image-choice-md\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648.png\",\"gform-image-choice-md-width\":400,\"gform-image-choice-md-height\":156,\"gform-image-choice-lg\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/Group-1-e1730399900648.png\",\"gform-image-choice-lg-width\":600,\"gform-image-choice-lg-height\":233}},\"imageMobile\":{\"ID\":1561,\"id\":1561,\"title\":\"GettyImages-1055451408 (1)\",\"filename\":\"GettyImages-1055451408-1.png\",\"filesize\":433860,\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1.png\",\"link\":\"https:\\\/\\\/detroitzoo.org\\\/membership\\\/gettyimages-1055451408-1\\\/\",\"alt\":\"\",\"author\":\"13\",\"description\":\"\",\"caption\":\"\",\"name\":\"gettyimages-1055451408-1\",\"status\":\"inherit\",\"uploaded_to\":1092,\"date\":\"2024-04-17 16:27:44\",\"modified\":\"2024-04-17 16:27:44\",\"menu_order\":0,\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https:\\\/\\\/detroitzoo.org\\\/wp-includes\\\/images\\\/media\\\/default.png\",\"width\":390,\"height\":663,\"sizes\":{\"thumbnail\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1-150x150.png\",\"thumbnail-width\":150,\"thumbnail-height\":150,\"medium\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1-176x300.png\",\"medium-width\":176,\"medium-height\":300,\"medium_large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1.png\",\"medium_large-width\":390,\"medium_large-height\":663,\"large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1.png\",\"large-width\":390,\"large-height\":663,\"1536x1536\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1.png\",\"1536x1536-width\":390,\"1536x1536-height\":663,\"2048x2048\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1.png\",\"2048x2048-width\":390,\"2048x2048-height\":663,\"gform-image-choice-sm\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1.png\",\"gform-image-choice-sm-width\":176,\"gform-image-choice-sm-height\":300,\"gform-image-choice-md\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1.png\",\"gform-image-choice-md-width\":235,\"gform-image-choice-md-height\":400,\"gform-image-choice-lg\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/GettyImages-1055451408-1.png\",\"gform-image-choice-lg-width\":353,\"gform-image-choice-lg-height\":600}},\"tagline\":\"\",\"heading\":\"&lt;p&gt;Give the gift that keeps giving for years to come!&lt;\\\/p&gt;\\n\",\"textBody\":\"&lt;p&gt;A Detroit Zoo membership provides endless education and entertainment guaranteed to inspire &mdash; not to mention great perks such as advanced ticket sales, exclusive discounts and complementary admission all year round.&lt;\\\/p&gt;\\n\",\"links\":[{\"title\":\"Give a Gift Membership\",\"url\":\"https:\\\/\\\/webstore.detroitzoo.org\\\/webstore\\\/shop\\\/viewitems.aspx?cg=memberships&#038;c=gift&#038;_ga=2.38777511.581605350.1711978100-2049464027.1708356640&#038;_gac=1.57339480.1711997218.CjwKCAjwtqmwBhBVEiwAL-WAYZRCbmu6mwc39vqp5HrYjgNKhd8oMmOTLHb6x2jq_YJDeCkxZpw3MxoCAuQQAvD_BwE\",\"target\":\"_blank\",\"scheme\":\"secondary\",\"icon\":\"none\",\"form\":\"\"}],\"alignment\":\"left\",\"anchorID\":\"\"}'><\/full-width-badge>\n<\/div>\n\n<style>\n<\/style>\n\n\n<div class=\"module-simple-badge-grid\">\n  <simple-badge-grid :model='{\"badgeItems\":[{\"image\":{\"ID\":1564,\"id\":1564,\"title\":\"image (1)\",\"filename\":\"image-1-1.png\",\"filesize\":215979,\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1.png\",\"link\":\"https:\\\/\\\/detroitzoo.org\\\/?attachment_id=1564\",\"alt\":\"\",\"author\":\"13\",\"description\":\"\",\"caption\":\"\",\"name\":\"image-1-5\",\"status\":\"inherit\",\"uploaded_to\":1449,\"date\":\"2024-04-17 16:42:19\",\"modified\":\"2024-04-17 16:42:19\",\"menu_order\":0,\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https:\\\/\\\/detroitzoo.org\\\/wp-includes\\\/images\\\/media\\\/default.png\",\"width\":400,\"height\":333,\"sizes\":{\"thumbnail\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1-150x150.png\",\"thumbnail-width\":150,\"thumbnail-height\":150,\"medium\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1-300x250.png\",\"medium-width\":300,\"medium-height\":250,\"medium_large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1.png\",\"medium_large-width\":400,\"medium_large-height\":333,\"large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1.png\",\"large-width\":400,\"large-height\":333,\"1536x1536\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1.png\",\"1536x1536-width\":400,\"1536x1536-height\":333,\"2048x2048\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1.png\",\"2048x2048-width\":400,\"2048x2048-height\":333,\"gform-image-choice-sm\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1.png\",\"gform-image-choice-sm-width\":300,\"gform-image-choice-sm-height\":250,\"gform-image-choice-md\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1.png\",\"gform-image-choice-md-width\":400,\"gform-image-choice-md-height\":333,\"gform-image-choice-lg\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-1-1.png\",\"gform-image-choice-lg-width\":400,\"gform-image-choice-lg-height\":333}},\"linkCta\":{\"title\":\"Learn more \",\"url\":\"\\\/ways-to-support\\\/donate\\\/renaissance-circle\\\/\",\"target\":\"\"},\"title\":\"Renaissance Circle\",\"description\":\"&lt;p&gt;A membership plus more. Enjoy all the benefits of a regular membership while providing generous philanthropic support.&lt;\\\/p&gt;\\n\"},{\"image\":{\"ID\":1567,\"id\":1567,\"title\":\"image (2)\",\"filename\":\"image-2-1.png\",\"filesize\":262270,\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1.png\",\"link\":\"https:\\\/\\\/detroitzoo.org\\\/?attachment_id=1567\",\"alt\":\"\",\"author\":\"13\",\"description\":\"\",\"caption\":\"\",\"name\":\"image-2-3\",\"status\":\"inherit\",\"uploaded_to\":1566,\"date\":\"2024-04-17 17:10:00\",\"modified\":\"2024-04-17 17:10:00\",\"menu_order\":0,\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https:\\\/\\\/detroitzoo.org\\\/wp-includes\\\/images\\\/media\\\/default.png\",\"width\":400,\"height\":333,\"sizes\":{\"thumbnail\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1-150x150.png\",\"thumbnail-width\":150,\"thumbnail-height\":150,\"medium\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1-300x250.png\",\"medium-width\":300,\"medium-height\":250,\"medium_large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1.png\",\"medium_large-width\":400,\"medium_large-height\":333,\"large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1.png\",\"large-width\":400,\"large-height\":333,\"1536x1536\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1.png\",\"1536x1536-width\":400,\"1536x1536-height\":333,\"2048x2048\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1.png\",\"2048x2048-width\":400,\"2048x2048-height\":333,\"gform-image-choice-sm\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1.png\",\"gform-image-choice-sm-width\":300,\"gform-image-choice-sm-height\":250,\"gform-image-choice-md\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1.png\",\"gform-image-choice-md-width\":400,\"gform-image-choice-md-height\":333,\"gform-image-choice-lg\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/04\\\/image-2-1.png\",\"gform-image-choice-lg-width\":400,\"gform-image-choice-lg-height\":333}},\"linkCta\":{\"title\":\"Give now \",\"url\":\"\\\/ways-to-support\\\/donate\\\/\",\"target\":\"\"},\"title\":\"Give Today\",\"description\":\"&lt;p&gt;Your generosity is what keeps us going. Give today and help the Detroit Zoo continue caring for animals and nature.&lt;\\\/p&gt;\\n\"},{\"image\":{\"ID\":348,\"id\":348,\"title\":\"badge-3\",\"filename\":\"badge-3.png\",\"filesize\":234963,\"url\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3.png\",\"link\":\"https:\\\/\\\/detroitzoo.org\\\/home\\\/badge-3\\\/\",\"alt\":\"\",\"author\":\"13\",\"description\":\"\",\"caption\":\"\",\"name\":\"badge-3\",\"status\":\"inherit\",\"uploaded_to\":88,\"date\":\"2024-03-06 18:26:22\",\"modified\":\"2024-03-06 18:26:22\",\"menu_order\":0,\"mime_type\":\"image\\\/png\",\"type\":\"image\",\"subtype\":\"png\",\"icon\":\"https:\\\/\\\/detroitzoo.org\\\/wp-includes\\\/images\\\/media\\\/default.png\",\"width\":400,\"height\":333,\"sizes\":{\"thumbnail\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3-150x150.png\",\"thumbnail-width\":150,\"thumbnail-height\":150,\"medium\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3-300x250.png\",\"medium-width\":300,\"medium-height\":250,\"medium_large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3.png\",\"medium_large-width\":400,\"medium_large-height\":333,\"large\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3.png\",\"large-width\":400,\"large-height\":333,\"1536x1536\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3.png\",\"1536x1536-width\":400,\"1536x1536-height\":333,\"2048x2048\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3.png\",\"2048x2048-width\":400,\"2048x2048-height\":333,\"gform-image-choice-sm\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3.png\",\"gform-image-choice-sm-width\":300,\"gform-image-choice-sm-height\":250,\"gform-image-choice-md\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3.png\",\"gform-image-choice-md-width\":400,\"gform-image-choice-md-height\":333,\"gform-image-choice-lg\":\"https:\\\/\\\/detroitzoo.org\\\/wp-content\\\/uploads\\\/2024\\\/03\\\/badge-3.png\",\"gform-image-choice-lg-width\":400,\"gform-image-choice-lg-height\":333}},\"linkCta\":{\"title\":\"Volunteer now\",\"url\":\"\\\/ways-to-support\\\/volunteer\\\/\",\"target\":\"\"},\"title\":\"Volunteer\",\"description\":\"&lt;p&gt;Gain knowledge, inspire guests and experience the outdoors while making a positive impact in your community.&lt;\\\/p&gt;\\n\"}],\"tagline\":\"\",\"headline\":\"Other ways to support\",\"dscription\":\"Help us to protect the natural world, conserve wildlife and provide inspiring education programs.\",\"buttonCta\":{\"title\":\"Learn Other Ways to Support\",\"url\":\"\\\/ways-to-support\\\/\",\"target\":\"\",\"scheme\":\"secondary\",\"icon\":\"none\",\"form\":\"\"}}'><\/simple-badge-grid>\n<\/div>\n\n\n<script>\n  function updateButtonLabels(tabTitle) {\n    console.log('Updating button labels for tab:', tabTitle);\n    const buttons = document.querySelectorAll('.global-link.global-link--primary.membership__plan-cta--primary');\n    buttons.forEach(button => {\n      const href = button.getAttribute('href');\n      const tabTitleMatch = href.match(\/&c=([^&]+)\/);\n      const currentTabTitle = tabTitleMatch ? tabTitleMatch[1] : '';\n      console.log('Current tab title in button href:', currentTabTitle);\n      if (currentTabTitle === tabTitle) {\n        switch (tabTitle) {\n          case 'family':\n            console.log('Updating button label to: Purchase Family Membership');\n            button.querySelector('.global-link__icon-label').textContent = 'Purchase Family Membership';\n            break;\n          case 'individual':\n            console.log('Updating button label to: Purchase Individual Membership');\n            button.querySelector('.global-link__icon-label').textContent = 'Purchase Individual Membership';\n            break;\n          case 'supporter':\n            console.log('Updating button label to: Purchase Supporter Membership');\n            button.querySelector('.global-link__icon-label').textContent = 'Purchase Supporter Membership';\n            break;\n          default:\n            break;\n        }\n      }\n    });\n  }\n\n  \/\/ Call updateButtonLabels when the page loads\n  window.onload = function() {\n    const activeTab = document.querySelector('.membership__nav .section-nav-link.section-nav-link--active');\n    const tabTitle = activeTab.dataset.tabTitle;\n    console.log('Active tab on page load:', tabTitle);\n    updateButtonLabels(tabTitle);\n  };\n\n  \/\/ Add event listener to tab buttons to update button labels when tabs change\n  const tabButtons = document.querySelectorAll('.membership__nav .section-nav-link');\n  tabButtons.forEach(tabButton => {\n    tabButton.addEventListener('click', function() {\n      const tabTitle = this.dataset.tabTitle;\n      console.log('Tab clicked:', tabTitle);\n      updateButtonLabels(tabTitle);\n    });\n  });\n<\/script>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":13,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":true,"_tec_requires_first_save":true,"inline_featured_image":false,"_EventAllDay":false,"_EventTimezone":"","_EventStartDate":"","_EventEndDate":"","_EventStartDateUTC":"","_EventEndDateUTC":"","_EventShowMap":false,"_EventShowMapLink":false,"_EventURL":"","_EventCost":"","_EventCostDescription":"","_EventCurrencySymbol":"","_EventCurrencyCode":"","_EventCurrencyPosition":"","_EventDateTimeSeparator":"","_EventTimeRangeSeparator":"","_EventOrganizerID":[],"_EventVenueID":[],"_OrganizerEmail":"","_OrganizerPhone":"","_OrganizerWebsite":"","_VenueAddress":"","_VenueCity":"","_VenueCountry":"","_VenueProvince":"","_VenueState":"","_VenueZip":"","_VenuePhone":"","_VenueURL":"","_VenueStateProvince":"","_VenueLat":"","_VenueLng":"","_VenueShowMap":false,"_VenueShowMapLink":false,"_tribe_blocks_recurrence_rules":"","_tribe_blocks_recurrence_description":"","_tribe_blocks_recurrence_exclusions":"","footnotes":""},"class_list":["post-1092","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Membership - Detroit Zoo<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/detroitzoo.org\/membership\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Membership - Detroit Zoo\" \/>\n<meta property=\"og:url\" content=\"https:\/\/detroitzoo.org\/membership\/\" \/>\n<meta property=\"og:site_name\" content=\"Detroit Zoo\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-09T17:03:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/detroitzoo.org\/wp-content\/uploads\/2024\/05\/default-site-img-dz.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/detroitzoo.org\/membership\/\",\"url\":\"https:\/\/detroitzoo.org\/membership\/\",\"name\":\"Membership - Detroit Zoo\",\"isPartOf\":{\"@id\":\"https:\/\/detroitzoo.org\/#website\"},\"datePublished\":\"2024-04-09T19:01:22+00:00\",\"dateModified\":\"2025-12-09T17:03:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/detroitzoo.org\/membership\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/detroitzoo.org\/membership\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/detroitzoo.org\/membership\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/detroitzoo.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Membership\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/detroitzoo.org\/#website\",\"url\":\"https:\/\/detroitzoo.org\/\",\"name\":\"Detroit Zoo\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/detroitzoo.org\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/detroitzoo.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/detroitzoo.org\/#organization\",\"name\":\"Detroit Zoo\",\"url\":\"https:\/\/detroitzoo.org\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/detroitzoo.org\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/detroitzoo.org\/wp-content\/uploads\/2024\/05\/org-logo-dz.png\",\"contentUrl\":\"https:\/\/detroitzoo.org\/wp-content\/uploads\/2024\/05\/org-logo-dz.png\",\"width\":696,\"height\":696,\"caption\":\"Detroit Zoo\"},\"image\":{\"@id\":\"https:\/\/detroitzoo.org\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Membership - Detroit Zoo","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/detroitzoo.org\/membership\/","og_locale":"en_US","og_type":"article","og_title":"Membership - Detroit Zoo","og_url":"https:\/\/detroitzoo.org\/membership\/","og_site_name":"Detroit Zoo","article_modified_time":"2025-12-09T17:03:18+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/detroitzoo.org\/wp-content\/uploads\/2024\/05\/default-site-img-dz.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/detroitzoo.org\/membership\/","url":"https:\/\/detroitzoo.org\/membership\/","name":"Membership - Detroit Zoo","isPartOf":{"@id":"https:\/\/detroitzoo.org\/#website"},"datePublished":"2024-04-09T19:01:22+00:00","dateModified":"2025-12-09T17:03:18+00:00","breadcrumb":{"@id":"https:\/\/detroitzoo.org\/membership\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/detroitzoo.org\/membership\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/detroitzoo.org\/membership\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/detroitzoo.org\/"},{"@type":"ListItem","position":2,"name":"Membership"}]},{"@type":"WebSite","@id":"https:\/\/detroitzoo.org\/#website","url":"https:\/\/detroitzoo.org\/","name":"Detroit Zoo","description":"","publisher":{"@id":"https:\/\/detroitzoo.org\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/detroitzoo.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/detroitzoo.org\/#organization","name":"Detroit Zoo","url":"https:\/\/detroitzoo.org\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/detroitzoo.org\/#\/schema\/logo\/image\/","url":"https:\/\/detroitzoo.org\/wp-content\/uploads\/2024\/05\/org-logo-dz.png","contentUrl":"https:\/\/detroitzoo.org\/wp-content\/uploads\/2024\/05\/org-logo-dz.png","width":696,"height":696,"caption":"Detroit Zoo"},"image":{"@id":"https:\/\/detroitzoo.org\/#\/schema\/logo\/image\/"}}]}},"publishpress_future_action":{"enabled":false,"date":"2026-01-15 02:48:21","action":"change-status","newStatus":"draft","terms":[],"taxonomy":"","extraData":[]},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/detroitzoo.org\/wp-json\/wp\/v2\/pages\/1092","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/detroitzoo.org\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/detroitzoo.org\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/detroitzoo.org\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/detroitzoo.org\/wp-json\/wp\/v2\/comments?post=1092"}],"version-history":[{"count":0,"href":"https:\/\/detroitzoo.org\/wp-json\/wp\/v2\/pages\/1092\/revisions"}],"wp:attachment":[{"href":"https:\/\/detroitzoo.org\/wp-json\/wp\/v2\/media?parent=1092"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}