// Capture IP and User Agent var ipAddress = ''; // Use a service to fetch IP var userAgent = navigator.userAgent; // Example of fetching IP using a public API fetch('https://api.ipify.org?format=json') .then(response => response.json()) .then(data => { ipAddress = data.ip; // Push to Data Layer window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'event': 'pinterestEvent', 'userData': { 'ip_address': ipAddress, 'user_agent': userAgent } }); });
top of page
ZIMEGO Men's Stretch Flex Button Shirts

ZIMEGO Men's Stretch Flex Button Shirts

SKU: 466e5d17#1
  • 98% Cotton, 2% Spandex
  • Button closure
  • Line Dry
  • FIT - U.S Regular Fit with modern slim styling - Please check the image with size chart. Size MEDIUM fits a men with 6', 150 Lbs, 38" Chest / Machine Wash COLD and Line Dry to minimize shrinkage.
  • DETAIL - Designed with 2 Button front dual chest pockets and a small side pocket. Back darts on back of the shirt to create slim styling.
  • STYLE - Dress to impress for the daily ride with a year-round slim fit long sleeve that proudly emphasizes your desire to stand out. These ZIMEGO Washed Button Shirt Collection styled to fit your individualism, whether the months are cold, hot, or in between.
  • OCCASION - No matter the occasion, fuel the creative qualities that make you unique by throwing on this color dyed long sleeve shirt. Whether you’re out on a casual date, visiting a friend, or traveling the world, wearing the shirt is certain to reflect your boldness and leave a lasting impression.
  • We created the washed shirt collection with premium quality stretch cotton spandex materials so you look awesome when you hit the streets and feel great wearing it year-round. These retro vintage long sleeve shirts are built with durability and styled for those who loves adventure. These modern active lifestyle inspired unique shirts are perfect for casual styling and dress down at work. Wear it with jeans, shorts and your favorite baseball cap to complete the outfit of the day.
    $49.00Price
    No Reviews YetShare your thoughts. Be the first to leave a review.
    • Instagram
    • Pinterest

    ©2024 by B You. All Rights Reserved.

    539 W. Commerce St #5729   Dallas, TX 75208

    bottom of page
    // Ensure that the script only runs on the order confirmation page if (window.location.href.indexOf("order-confirmation") > -1) { // Assuming Wix provides an API or a way to access order data (e.g., email from the order object) var email = ''; // You will need to replace this with the actual method to fetch email from the order (e.g., Wix's API or Order object) // Check if email is available before proceeding if (email) { // Function to hash email using SHA256 function hashEmail(email) { var sha256 = new Hashes.SHA256(); return sha256.hex(email); } // Hash the captured email var hashedEmail = hashEmail(email); // Send the hashed email to Pinterest window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'event': 'pinterestEvent', 'userData': { 'email': hashedEmail } }); // Debugging: Log the hashed email to the console console.log("Hashed Email Sent to Pinterest: " + hashedEmail); } }