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)

Guide to Smoking Subscription Boxes

The vast array of smoking accessories available today makes it a very exciting time for enthusiasts and connoisseurs. At DankStop, we constantly search for the latest and top-tier products to enhance our collection.

That's where smoking subscription boxes come into play – a perfect solution for those eager to discover and acquire new smoking essentials seamlessly. In this article, we'll delve into the benefits of these subscription boxes and offer insights on making the most of your smoking experience.

What is a Smoking Subscription Box?

A smoking subscription box is a curated collection of diverse smoking accessories conveniently delivered to your doorstep every month. Many vendors offer flexible subscription durations, such as 3-month or 6-month plans, catering to varying needs.

At the heart of each box, you'll typically find a standout item like a water pipe, dab rig, glass bongs, or hand pipe. But that's just the beginning. In addition to the featured piece, the boxes often come packed with essential smoking accessories. Expect to find rolling supplies, grinders, and carb caps.

For those who love a bit of flair, stickers and other swag items are also included. One of the unique aspects of smoking subscription boxes is their thematic approach.

Each month, subscribers can look forward to a cohesive theme, ensuring every piece, from the main glass item to the smallest accessory, follows a unified concept. This enhances the unboxing experience and adds a layer of excitement for the subscriber, eagerly anticipating the next month's theme.

Benefits of Smoking Subscription Boxes

They Save You Money

One of the standout advantages of smoking subscription boxes is the cost savings. By bundling various items, these boxes often provide products at a significant discount. Instead of purchasing each smoking accessory individually at your smoke shop (which can quickly add up), you get a curated collection that offers more bang for your buck.

An Endless Supply of Gear

Never find yourself without the latest smoking essentials again. A monthly subscription box guarantees you a fresh set of brand-new smoking gear and accessories every 30 days. Whether it's premium glass pieces, grinders, the latest in vape technology, or accessories like lighters or rolling papers, you'll always be equipped.

They Make Great Gifts

Are you seeking a unique gift for a fellow stoner or dry herb connoisseur? Some vendors offer the option to purchase single box sets. These curated collections can be the perfect surprise for someone special, packed with high-quality smoking accessories and goodies.

They Keep Things Exciting

Routine can become mundane. Using the same old bong or pipe repeatedly might lose its charm. Smoking subscription boxes, like the ones from Daily High Club, bring a refreshing change by introducing unique and often exclusive pieces. You can look forward to new designs, innovative accessories, and a rejuvenated smoking experience every month.

daily high club smoking subscription box

Who Offers the Best Smoking Subscription Box?

When it comes to top-notch smoking subscription boxes, our friends at Daily High Club truly stand out. In our eyes, they offer the best weed subscription boxes.

Their themed smoking accessory boxes offer a variety of products at an unmatched value. Imagine getting over $100 worth of premium smoking gear every month for just $29.99!

What sets Daily High Club apart is the uniqueness of each box. Every month follows a distinct theme, so each box is a curated collection of premium smoking gear from popular brands. And the cherry on top is that each box features new products and a custom-made centerpiece exclusive to DHC, ensuring you have a truly one-of-a-kind piece.

For those looking to commit, Daily High Club sweetens the deal. They offer 3, 6, and 12-month subscription plans, with savings increasing the longer you subscribe. For connoisseurs and enthusiasts alike, it's an offer hard to resist.

Learn more about Daily High Club's Smoking Subscription Boxes and get your monthly fix of smoking accessories starting today!

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(); } })();