Price range: $31.58 through $42.58

-

Price range: $45.57 through $57.00

-

Price range: $25.99 through $30.99

-

Price range: $29.28 through $37.53

-

Clothing/Apparel

RForged Logo T-Shirt

Price range: $12.10 through $16.78

-

X
Welcome to our website
jQuery(function ($) { function addProductButton() { // Remove any existing button $('#fg-view-product').remove(); // Current lightbox thumbnail var selected = $('.fg-panel-thumb.fg-selected'); if (!selected.length) { return; } // Find the selected image URL var selectedImage = selected.find('img').attr('src'); if (!selectedImage) { return; } // Find the matching gallery thumbnail by image filename var galleryThumb = $('.fg-thumb').filter(function () { var img = $(this).find('img').attr('src'); return img === selectedImage; }).first(); if (!galleryThumb.length) { return; } var productURL = galleryThumb.data('product-url'); if (!productURL) { return; } // Build button var button = $( '

' + 'View Product' + '

' ); button.find('a').attr('href', productURL); // Insert below the description $('.fg-media-caption-description').after(button); } // Watch the lightbox for changes const observer = new MutationObserver(function () { addProductButton(); }); observer.observe(document.body, { childList: true, subtree: true, attributes: true }); }); jQuery(function ($) { $(document).on('click', 'a[data-open="#login-form-popup"]', function () { setTimeout(function () { const container = document.querySelector('.sct-woocommerce-login'); if (!container) { return; } // Remove the Turnstile instance that was initialized // before the Flatsome popup became visible. try { turnstile.remove(container); } catch (e) { console.warn('Could not remove existing login Turnstile:', e); } // Save the settings before clearing the container. const settings = { sitekey: container.dataset.sitekey, theme: container.dataset.theme, language: container.dataset.language, size: container.dataset.size, retry: container.dataset.retry, 'retry-interval': Number(container.dataset.retryInterval), 'refresh-expired': container.dataset.refreshExpired, 'refresh-timeout': container.dataset.refreshTimeout, action: container.dataset.action, appearance: container.dataset.appearance, callback: window.turnstileWooLoginCallback }; // Remove the old widget markup. container.innerHTML = ''; // Render Turnstile after the popup is visible. try { turnstile.render(container, settings); } catch (e) { console.error('Could not render login Turnstile:', e); } }, 500); }); });