Categories
-
Intl Delivery
via FedEx or DHL
-
Support 24/7
Online 24 hours
-
Free return
90 Days
-
payment method
Secure payment
Filter
jQuery(function($) {
new Shopify.OptionSelectors('product-selectors', {
product: {"id":7321979682998,"title":"Pablo Escobar Inspired Stocky T-Shirt","handle":"pablo-escobar-inspired-stocky-t-shirt","description":"Soft Style Graphic T-Shirt","published_at":"2022-04-28T16:38:24-04:00","created_at":"2022-04-28T12:41:55-04:00","vendor":"Stocky AutoWorks","type":"Apparel \u0026 Accessories","tags":["Apparel","Stocky AutoWorks","T-Shirt"],"price":3000,"price_min":3000,"price_max":3000,"available":true,"price_varies":false,"compare_at_price":null,"compare_at_price_min":0,"compare_at_price_max":0,"compare_at_price_varies":false,"variants":[{"id":41419773870262,"title":"Small","option1":"Small","option2":null,"option3":null,"sku":"","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Pablo Escobar Inspired Stocky T-Shirt - Small","public_title":"Small","options":["Small"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"Custom Product","requires_selling_plan":false,"selling_plan_allocations":[]},{"id":41419773903030,"title":"Medium","option1":"Medium","option2":null,"option3":null,"sku":"","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Pablo Escobar Inspired Stocky T-Shirt - Medium","public_title":"Medium","options":["Medium"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"Custom Product","requires_selling_plan":false,"selling_plan_allocations":[]},{"id":41419773935798,"title":"Large","option1":"Large","option2":null,"option3":null,"sku":"","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Pablo Escobar Inspired Stocky T-Shirt - Large","public_title":"Large","options":["Large"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"Custom Product","requires_selling_plan":false,"selling_plan_allocations":[]},{"id":41419773968566,"title":"X-Large","option1":"X-Large","option2":null,"option3":null,"sku":"","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Pablo Escobar Inspired Stocky T-Shirt - X-Large","public_title":"X-Large","options":["X-Large"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"Custom Product","requires_selling_plan":false,"selling_plan_allocations":[]},{"id":41419774001334,"title":"XX-Large","option1":"XX-Large","option2":null,"option3":null,"sku":"","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Pablo Escobar Inspired Stocky T-Shirt - XX-Large","public_title":"XX-Large","options":["XX-Large"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"Custom Product","requires_selling_plan":false,"selling_plan_allocations":[]},{"id":41419774034102,"title":"XXX-Large","option1":"XXX-Large","option2":null,"option3":null,"sku":"","requires_shipping":true,"taxable":true,"featured_image":null,"available":true,"name":"Pablo Escobar Inspired Stocky T-Shirt - XXX-Large","public_title":"XXX-Large","options":["XXX-Large"],"price":3000,"weight":0,"compare_at_price":null,"inventory_management":"shopify","barcode":"Custom Product","requires_selling_plan":false,"selling_plan_allocations":[]}],"images":["\/\/stockyautoworks.com\/cdn\/shop\/products\/4b30fe8b-490a-4fcf-934d-a1feb8dcc304.jpg?v=1651178262","\/\/stockyautoworks.com\/cdn\/shop\/products\/f22b7673-7f9b-4fbd-833e-5aaf8b75ac4a.jpg?v=1651178269"],"featured_image":"\/\/stockyautoworks.com\/cdn\/shop\/products\/4b30fe8b-490a-4fcf-934d-a1feb8dcc304.jpg?v=1651178262","options":["Size"],"media":[{"alt":null,"id":24160847757494,"position":1,"preview_image":{"aspect_ratio":0.483,"height":1560,"width":753,"src":"\/\/stockyautoworks.com\/cdn\/shop\/products\/4b30fe8b-490a-4fcf-934d-a1feb8dcc304.jpg?v=1651178262"},"aspect_ratio":0.483,"height":1560,"media_type":"image","src":"\/\/stockyautoworks.com\/cdn\/shop\/products\/4b30fe8b-490a-4fcf-934d-a1feb8dcc304.jpg?v=1651178262","width":753},{"alt":null,"id":24160848347318,"position":2,"preview_image":{"aspect_ratio":0.82,"height":1317,"width":1080,"src":"\/\/stockyautoworks.com\/cdn\/shop\/products\/f22b7673-7f9b-4fbd-833e-5aaf8b75ac4a.jpg?v=1651178269"},"aspect_ratio":0.82,"height":1317,"media_type":"image","src":"\/\/stockyautoworks.com\/cdn\/shop\/products\/f22b7673-7f9b-4fbd-833e-5aaf8b75ac4a.jpg?v=1651178269","width":1080}],"requires_selling_plan":false,"selling_plan_groups":[],"content":"Soft Style Graphic T-Shirt"},
onVariantSelected: selectCallback,
enableHistoryState: true
});
$('.selector-wrapper:eq(0)').prepend('');
$('.single-option-selector:eq(0)').val("Small").trigger('change');
});
//get variant form url
var getVariant = function () {
var params;
var parser = document.createElement('a');
parser.href = window.location.href;
var query = parser.search.substring(1);
var vars = query.split('&');
for (var i = 0; i < vars.length; i++) {
var pair = vars[i].split('=');
var params = decodeURIComponent(pair[1]);
}
return params;
}
var showAddtocart = jQuery(".product-options-bottom").offset().top;
//check position to show form in bottom
function checkPosition(){
var scrollTop = jQuery(window).scrollTop();
if (scrollTop > showAddtocart) {
jQuery(".add-to-cart-fixed").addClass('active');
//sync variant : content form => bottom form
var idVariant = getVariant();
$("#second-select").val(idVariant);
} else {
jQuery(".add-to-cart-fixed").removeClass('active');
}
};
jQuery(window).scroll(function () {
checkPosition()
});
//send request in bottom form
jQuery(".button-addtocard").click(function(){
jQuery(".product-options-bottom #AddToCart-product-template").click();
});
//sync variant : content form => bottom form
jQuery('#second-select').change(function(){
data_variant1 = ($(this).find(':selected').data('variant1'));
data_variant2 = ($(this).find(':selected').data('variant2'));
data_variant3 = ($(this).find(':selected').data('variant3'));
if (data_variant1 != "") {
jQuery("#swatch-0-" + data_variant1).click();
}
if (data_variant2 != "") {
jQuery("#swatch-1-" + data_variant2).click();
}
if (data_variant3 != "") {
jQuery("#swatch-2-" + data_variant3).click();
}
});
Pablo Escobar Inspired Stocky T-Shirt
$30.00
Soft Style Graphic T-Shirt
Soft Style Graphic T-Shirt
Your order of $100 or more gets free standard delivery.
- Standard delivered 4-5 Business Days
- Express delivered 2-4 Business Days
Orders are processed and delivered Monday-Friday (excluding public holidays)
eMarket members enjoy free returns.
Chat with Us