While push-ups, pull-ups and sit-ups may seem outdated, bodyweight training is still one of the most common forms of exercise. If you need a break from the gym for some...
Variant picker
Choosing a selection results in a full page refresh.
Opens in a new window.
function syncGclidToCart() {
var gclid = localStorage.getItem('stamina_gclid');
if (!gclid) return;
fetch('/cart/update.js', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
attributes: {
gclid: gclid
}
})
});
}
document.addEventListener('click', function (e) {
if (e.target.closest('[href*="/checkout"], .checkout-button, [name="checkout"]')) {
syncGclidToCart();
}
});
syncGclidToCart();