so it's set BEFORE the // app-embed klaviyo.js (injected via content_for_header) reads it. // Klaviyo checks the __kla_off cookie on load; "true" disables tracking. // - Returning visitor who declined marketing -> set __kla_off=true. // - Returning visitor who accepted -> clear it. // - First visit (no saved choice): US opt-out default is "granted", so // we leave Klaviyo enabled and let the banner set the switch once the // visitor chooses. If your model is opt-IN, set __kla_off=true here. if (saved && !saved.marketing) { document.cookie = "__kla_off=true; path=/; max-age=31536000; SameSite=Lax"; } else if (saved && saved.marketing) { document.cookie = "__kla_off=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/"; } } catch (e) {} })(); Skip to content

Confirm your age

You must be 21 years or older to enter this site. By clicking ‘Enter,’ you confirm that you are at least 21 years of age.

Sorry!

You are not old enough to view the site...
Dankstop logo: green stylized droplet icon left of lowercase black "dankstop" wordmark

Your cart is empty

Continue shopping
0($0.00)

420 Door Crashers at DankStop: Huge Discounts + Extra 20% Off

Start Strong with 420 Door Crashers

Kick off 420 the right way with DankStop’s Door Crashers event. Running from April 9 to 14, this early access sale delivers some of the biggest price drops before the main 420 rush even begins. If you are looking to grab top gear at the lowest possible prices, this is where the real deals start.

Limited time, limited stock, and high demand make this one of the most competitive drops of the season.

Massive Discounts on Top Gear

Massive Discounts on Top Gear

During the Door Crashers event, you can find major savings across a wide range of products. From high performance vaporizers to precision dab tools and glass essentials, everything is priced to move fast.

Expect standout deals on popular brands like Pulsar, Honeybee Herb, and Grateful Dead accessories. Whether you are upgrading your setup or picking up something new, this is your chance to save big without compromising on quality.

Extra Savings at Checkout

Take your savings even further with an additional discount at checkout. Use code to unlock an extra 20%† off your member price.

This extra layer of savings makes already discounted products even more affordable, giving you maximum value during the event.

Built for Every Type of Session

The Door Crashers lineup is designed to cover every style and preference. Whether you enjoy dry herb, concentrates, or a mix of both, you will find gear that fits your routine.

Explore portable vaporizers for convenience, quartz bangers and carb caps for precision dabbing, and unique glass pieces that stand out in both performance and design. Accessories like terp pearls, dab tools, and containers help complete your setup and improve every session.

Premium Brands at Better Prices

DankStop is known for curating high quality products, and this sale is no different. Every item is selected to meet performance standards while still delivering value.

From advanced vape devices to durable glass and reliable accessories, you are getting trusted gear at significantly reduced prices. It is the perfect balance of quality and affordability.

Limited Quantities Available

Door Crasher deals are exactly what they sound like. Once items sell out, they are gone. With popular products moving quickly, waiting too long can mean missing out on the best offers.

Shopping early ensures you get access to the widest selection before inventory runs low.

Lock In Your 420 Deals Early

The 420 Sale at DankStop starts here. With deep discounts, extra savings using code, and a wide range of premium products, this event sets the tone for the entire season.

Do not wait for the last minute. Shop the Door Crashers now and secure the best deals before they disappear.

 

Logo

Check your email

Dont worry we will help you to recover your password

Email is required

Verify OTP

Please enter the OTP you recevied in your email.

OTP is required

Enter New Password

Password is required
Confirm Password is required
Logo

Your Elite Membership is expiring soon

Renew now for $15/yr

Limited Time Offer

Logo

Access ELITE Prices, Free Shipping & VIP perks at top
CBD & smoking accessory sites for only $30/yr

ELITE Members Get Birthday
Rewards!

Share your birthday below

Invalid date format. Please enter a valid date.

Your ELITE Membership Has Been Added to Cart!

You can now shop at ELITE price!
Continue shopping & complete checkout to unlock
UNBELIEVABLE savings, free shipping & VIP perks!

, before GTM loads. // This pushes 'update' calls so GTM/GA4 reflect the visitor's actual choice // on this pageview and on every later change. Self-heals window.gtag in // case the head snippet hasn't been added yet, so nothing throws. function pushConsentUpdate(consent){ window.dataLayer = window.dataLayer || []; if (typeof window.gtag !== 'function') { window.gtag = function(){ window.dataLayer.push(arguments); }; } window.gtag('consent', 'update', { 'ad_storage': consent.marketing ? 'granted' : 'denied', 'ad_user_data': consent.marketing ? 'granted' : 'denied', 'ad_personalization': consent.marketing ? 'granted' : 'denied', 'analytics_storage': consent.analytics ? 'granted' : 'denied', 'functionality_storage': consent.performance ? 'granted' : 'denied', 'personalization_storage': consent.performance ? 'granted' : 'denied' }); } // --- Script gating function activateScriptsForCategory(cat){ // Manually-marked static tags (data-ccai-category written by hand — // needed for vendors hardcoded as ). if (window.CCAI && typeof window.CCAI.releaseVendorCategory === 'function') { window.CCAI.releaseVendorCategory(cat); } } function runConsent(consent){ // performance -> functional/loyalty/chat scripts if (consent.performance) activateScriptsForCategory('performance'); // analytics if (consent.analytics) activateScriptsForCategory('analytics'); // marketing if (consent.marketing) activateScriptsForCategory('marketing'); } function deleteCookie(name){ const host = location.hostname; const parts = host.split('.'); const baseDomains = []; const paths = ['/', '/checkout', '/cart', location.pathname]; // Add current path // Generate domains: "store.com", ".store.com", "www.store.com" for (let i = 0; i < parts.length; i++) { const domain = parts.slice(i).join('.'); baseDomains.push(domain); baseDomains.push('.' + domain); } baseDomains.forEach(function(domain){ paths.forEach(function(path){ // Try standard deletion document.cookie = name + '=; Max-Age=0; path=' + path + '; domain=' + domain + ';'; document.cookie = name + '=; Max-Age=0; path=' + path + '; domain=' + domain + '; Secure; SameSite=Lax'; document.cookie = name + '=; Max-Age=0; path=' + path + '; domain=' + domain + '; Secure; SameSite=None'; }); }); // Fallbacks for host-only cookies paths.forEach(function(path){ document.cookie = name + '=; Max-Age=0; path=' + path + ';'; document.cookie = name + '=; Max-Age=0; path=' + path + '; Secure; SameSite=Lax'; }); } // --- Vendor -> category map (per the Dec 2025 review, F1/R1). // This is the single source of truth other theme code should reference // when deciding what category a tag belongs to. GA4/Google Ads is already // gated via Consent Mode. The vendors below still need their actual // snippet, so pushConsentUpdate is not called here — it fires // only on explicit user action (Accept All / Necessary Only / Save). openBanner(); } } else { // Returning visitor: the snippet already re-applied their choice // to the dataLayer before GTM loaded, so no extra push needed here. applyTogglesFrom(saved); loadShopifyCustomerPrivacy(function(){ syncToShopifyAPI(saved); }); runConsent(saved); purgeCookies(saved); closeBanner(); } })();