Please enable JavaScript to view the Web Integrations by Mariana Tek.
0
Skip to Content
The Well Studio
Home
Book Now
Buy Credits & Membership
WELL SCULPT TRAINING
Account
Create Account
Account Access
Learn About Well
Class Descriptions
Well Studio Blog
About Us
The Well Studio
Home
Book Now
Buy Credits & Membership
WELL SCULPT TRAINING
Account
Create Account
Account Access
Learn About Well
Class Descriptions
Well Studio Blog
About Us
Home
Book Now
Buy Credits & Membership
WELL SCULPT TRAINING
Folder: Account
Back
Create Account
Account Access
Folder: Learn About Well
Back
Class Descriptions
Well Studio Blog
About Us

 

The Well Studio

714 Pine Street Paso Robles,
CA 93446 

thestudio@thewellstudioyoga.com

Hours:

Class times vary.

Follow

 

PRIVACY POLICY | COOKIES | TERMS & CONDITIONS | MADE WITH ♥ BY MERAKI BRANDING

/** * Hide Cart until an item is added to the cart */ (function () { var carts = [].slice.call(document.querySelectorAll('.header-actions-action--cart')); carts.forEach(function(cart) { hideCart(cart); }); /** * Hide Cart */ function hideCart(cart) { var cartQty = cart.querySelector('.sqs-cart-quantity'); // Handler function handler(target) { if (target.innerHTML === '0') { cart.setAttribute('hidden', ''); } else { cart.removeAttribute('hidden'); } } // Observer handler var observer = new MutationObserver(function(mutations) { handler(mutations[0].target); }); // Hide/show the cart when the page is loaded handler(cartQty); // Hide/show the cart when an item was added/removed observer.observe(cartQty, { childList: true }); } })();