RForged Embroidered Zip Hoodie

Price range: $45.57 through $57.00

-

X
Welcome to our website
jQuery(function ($) { function addProductButton() { // Remove any previous button $('#fg-view-product').remove(); // Find the currently selected thumbnail var thumb = $('.fg-panel-thumb.fg-selected'); if (!thumb.length) return; var attachmentID = thumb.data('attachment-id'); if (!attachmentID) return; // Find the matching gallery thumbnail var galleryThumb = $('.fg-thumb[data-attachment-id="' + attachmentID + '"]'); if (!galleryThumb.length) return; var url = galleryThumb.data('product-url'); if (!url) return; var button = $('

View Product

'); button.find('a').attr('href', url); $('.fg-media-caption-description').after(button); } // Fire whenever the selected image changes $(document).on('click', '.fg-thumb, .fg-panel-thumb, .fg-panel-button-next, .fg-panel-button-prev', function () { setTimeout(addProductButton, 100); }); // Initial open $(document).on('click', '.fg-thumb', function () { setTimeout(addProductButton, 200); }); });