Shopify + Ninja Transfers Integration
Launch premium branded apparel collections with automated order fulfillment using Shopify and Ninja Transfers. Built for scalable outdoor lifestyle branding.
Ninja Transfers
Designed in the Keys. Built for the Water.
GEARXO is a modern marine gear brand born in the Florida Keys. We build precision fishing accessories, custom 3D printed marine components, and technical outdoor apparel for offshore anglers, tournament fishermen, and those who live life on the water. No fluff. Just gear that works.
Shop now
Modern Marine Gear Designed in the Keys
BUILT FOR WATER & ADVENTURE
Precision-built fishing, boating, and adventure gear engineered for offshore lifestyles. Designed in the Florida Keys by people who actually work on the water.
Shop Collection
document.addEventListener('DOMContentLoaded', function() {
const buyBtn = document.querySelector('[name="goto_pp"], .shopify-payment-button button');
if (!buyBtn) return;
buyBtn.addEventListener('click', function(e) {
const productForm = document.querySelector('form[action="/cart/add"]');
if (!productForm) return;
const fields = document.querySelectorAll('#trap-tag-form input, #trap-tag-form select');
let valid = true;
fields.forEach(function(field) {
if (field.hasAttribute('required') && !field.value.trim()) {
field.style.borderColor = 'red';
valid = false;
} else {
field.style.borderColor = '#ff6b00';
if (field.name) {
const hidden = document.createElement('input');
hidden.type = 'hidden';
hidden.name = field.name;
hidden.value = field.value;
productForm.appendChild(hidden);
}
}
});
if (!valid) {
e.preventDefault();
e.stopImmediatePropagation();
alert('Please fill in all required fields before continuing.');
}
}, true);
});