Philadelphia Commercial Emphatic Ii 36 Vivid Burgundy 56845_54256
Scroll To Top
jQuery(window).on('load', function() {jQuery('.uabb-infobox').each(function() {// Description
var desc = jQuery(this).find('.uabb-infobox-text');if (desc.length) {
var text = desc.text().replace(/\s+/g, '').toLowerCase();// check for empty OR default lorem
if (text === '' || text.includes('loremipsum')) {
desc.hide();
}
}// Title
var title = jQuery(this).find('.uabb-infobox-title');if (title.length) {
var t = title.text().replace(/\s+/g, '');if (t === '' || t.toLowerCase().includes('infobox')) {
title.hide();
}
}// Button
var btn = jQuery(this).find('.uabb-infobox-cta');if (btn.length) {
var b = btn.text().replace(/\s+/g, '');if (b === '') {
btn.hide();
}
}});});