Sitewide Buy 4 Get 1 Free & Free shipping for order $79+
NEW
HOT
SALE
Bundle Sale
Animals
Garage
Music
Beer Bar Cafe
Warning & Slogan
Multi Style
Beer Bar Cafe
Beer
Spirits
Hot Set
Garage Series
Gas Oil
Service
Car
Motorcycle
Transportation
Car License
Big Size
Big Size-Beer
Big Size-Garage
Big Size-Pin Up Girl
Big Size-Warning
Big Size-Animal
Big Size-Music
Big Size-Western
Metal Tin Signs
Shop By Shapes
Hot Series
Entertainment
Animals
Customized
Photo Custom
Text Custom
Wooden Signs
Shop By Size
Popular Series
T-shirt
Music
Garage
Beer
Western Style
Entertainment
NEW
HOT
SALE
Low to $3.5
Bundle Sale
Animals
Garage
Music
Beer Bar Cafe
Warning & Slogan
Multi Style
Beer Bar Cafe
Beer
Corona
Budweiser
Guinness
Duff Beer
Hamm's Beer
Miller Beer
Busch
Lite Beer
Blue Ribbon
Spirits
Whisky
Cocktail
Rum
Hot Set
Coffee
Foods
Wine
Garage Series
Hot
Gas Oil
Esso
Gulf
Mobil
Sinclair
STP
Texaco
Castrol
BP
76 Oil
Valvoline
Service
Spark Plug
Chain Saw
WD-40
Tire
Mopar
Car
Porsche
MG
Rat Fink
Shelby Cobra
Ferrari
Motorcycle
Kawasaki
Suzuki
Vespa
Ducati
BSA
Transportation
Airplane
Car
Motorcycle
Tractor
Train
Truck
Car License
Country & State
Number
Garage
Beer
Word
Big Size
New
Big Size-Beer
Big Size-Garage
Big Size-Pin Up Girl
Big Size-Warning
Big Size-Animal
Big Size-Music
Big Size-Western
Metal Tin Signs
Shop By Shapes
Car License (6*12Inches)
Rectangle Signs (8*12inches)
Rectangle Signs(12*16 Inches)
Round Signs (12*12inches)
Shield Signs (12*12 inches)
Hot Series
Pin Up Girls
Route 66
Warning
Area 51
Landscape
Western Style
Garden
Flag
Entertainment
Music
Sports
Movie
Cartoon
Animals
Chicken
Cat
Dog
Horse
Customized
Photo Custom
Text Custom
Wooden Signs
Shop By Size
8*12 Inches Wooden Signs
12*16 Inches Wooden Signs
12*12 Inches Round Wooden Signs
12*12 Inches Shield Wooden Signs
Popular Series
Car
Gas Oil
Motorcycle
Pin Up Girls
Service
Warning
Western Style
T-shirt
Music
Garage
Beer
Western Style
Entertainment
Login
Register
Login
Register
1 / 13
You may also like
Don't Like These?
19%
OFF
Pin Up Girl - Metal Tin Signs(12*16Inch) - Bar
1164704
4 sold
$13.69
$16.99
Qty
3 in stock
-
+
Add to Cart -
$13.69
Buy Now
Product Description
Specification:
Material: Tinplate/Metal
Size: 30x40cm/11.81x15.75in
Applicable scenarios: applicable to home, bar, coffee shop, KTV, etc.
Function: Both mast and wall can be used
Note:
Some retro metal signs are designed with rusty texture, which is not a quality problem.
Due to the different monitor and light effect, the actual color of the item might be slightly different from the color showed on the pictures. Thank you!
Please allow 1-2cm measuring deviation due to manual measurement.
Package Content:
1 x Iron Painting
You may also like
Don't Like These?
Hot Selling Series
25%
OFF
50 U.S. States - Car License(6*12Inch)
Stressgogo
$5.99
$7.99
14%
OFF
NEW YORK ASSMAN - Car License(6*12Inch)
Stressgogo
$5.99
$6.99
Wd 40 Solvent - Metal Tin Signs(8*12Inch/12*16Inch) - Garage
Stressgogo
$7.99
10%
OFF
Drinking And Bullshitting Is Mandatory - Metal Tin Signs(8*12Inch/12*16Inch)
Stressgogo
$8.99
$9.99
WWII German Gunner Girl - Metal Tin Signs(8*12Inch/12*16Inch)
Stressgogo
$8.99
Pin Up Girls With Corona Beer - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
Ice Cold Beer - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
Tito's - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
It's Not A Fucking Shed It's A Bar - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
Beer - Metal Tin Signs(8*12Inch/12*16Inch) - Bar
Stressgogo
$8.99
View all
Customer Reviews
Here are what our customers say.
Write a Review
Write a Review
Reviews
With Photos
Newest
Newest
Most liked
Highest ratings
Lowest ratings
Customer Reviews
Reviews
With Photos
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
${function(){ const limit = typeof data === 'number' ? data : 0; return `
Pictures/Videos (
${limit || 0}/5
)
` }()}
${(function(){ const closeIcon = '
'; if (item.type === 'image') { return `
${closeIcon}
` } return `
${closeIcon}
` })()}
Submit Comments Anonymously
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.
0