product details
MPN#
SKU#
var category = '<%= product.category[1].id %>';
var finalPrice = <%= product.finalPrice %>;
var printers = '18cb94cb-6c43-496b-b3d7-b9cac1afa57a';
var backgrounds = '0aca8c33-c1b6-4e98-ba9f-5bfcc734a9da';
if(category == backgrounds || category == printers || finalPrice < 50.01) {
document.getElementById("shipping-box").style.display = 'none';
}
else {
document.getElementById("shipping-box").style.display = 'block';
}
Financing available through
var totalPrice = <%= product.finalPrice %>;
if(totalPrice > 299.99) {
$("#flexitidiv").show();
}
Equal payments over 6 months at 0% interest*
Foto Care Protection Plan
Purchase a Foto Care Protection Plan for cameras or lenses.

Extended Warranty – 3 years
Price: $49.99
// Get variables
var prodPrice = <%= product.finalPrice %>;
var prodCat = "<%= product.category[1].id %>";
var digitalCamera = "a58a8268-4946-4121-8912-f53ba8efa0ea";
var slrLenses = "1c2d2aa8-6eda-4c6e-9b23-a49316b6450e";
// Run script for filtered categories
if(prodCat == digitalCamera || prodCat == slrLenses) {
// Parse all entries
for (var x of warranty3List) {
if(x[0] > prodPrice) {
my3Warranty(x[1][0], x[1][1]);
break;
}
}
}
// Update info in widget
function my3Warranty(link, price) {
document.getElementById("warranty3Link").href = link;
document.getElementById("war3Price").innerHTML = price;
document.getElementById("warranty3Box").style.display = 'block';
document.getElementById("warranty").style.display = 'block';
}