Your satisfaction is our goal but please be aware that a lot of effort goes into preparing orders prior to shipment. With this in mind we encourage you obtain samples prior to ordering. Orders cancelled by buyer that have already shipped are subject to our return policy terms. Refusing an order once shipped will result in return freight charges that may exceed the original purchase price. By purchasing product you agree to pay all incurred costs imposed by the trucking company for rerouting your freight. Special orders (i.e. custom color mulch) cannot be returned.
In the event product needs to be returned, we will help facilitate the return however you will be responsible for both our initial shipping costs and the return fees. Products must be returned to us in brand new condition, unused, and in their original packaging. Please contact us in order to receive complete instructions on returning goods. Once we receive your return, please allow 1-2 weeks for processing.
Buyer must report any warranted defect to seller in writing within 5 days of discovery, but no later than 15 days from the date of receipt of goods; permit the seller to inspect the defective goods. Buyer’s sole remedy for any such defect is the repair or replacement of the goods or credit against future purchases, at Seller’s sole option. Buyer does not authorize and pay for packaging and shipping in advance, seller may destroy or otherwise dispose of the goods as it may determine. This warranty does not include labor or shipping costs and it does not include damage due to abuse, accident, misuse, modification, or improper use.
function MulchCalc() {
var a = document.getElementById("ppsft").value;
var b = (document.getElementById("Depther").value / 12);
var c = document.getElementById("Widther").value;
var d = document.getElementById("Lengther").value;
if (a > 0) {
if (b > 0) {
if (c > 0) {
if (d > 0) {
var math = a * c * d;
var tpo = Math.round((math * 10) / 10).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
jQuery("#tpo").html(tpo);
g = math / 2000;
var tto = g.toFixed(2);
jQuery("#tto").html(tto);
var tba = Math.round(((math * 10) / 10) / 40).toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
jQuery("#tba").html(tba);
var tpa = Math.ceil((math / 20) / 100);
jQuery("#tpa").html(tpa);
jQuery("#mulch_results").addClass('show-results');
setTimeout(function () {
jQuery("#total_lbs").addClass('grow');
}, 300);
setTimeout(function () {
jQuery("#total_tons").addClass('grow');
}, 500);
setTimeout(function () {
jQuery("#total_bags").addClass('grow');
}, 700);
setTimeout(function () {
jQuery("#total_pallets").addClass('grow');
}, 900);
}
else { var calcerror = '
*Length has not been set properly
'; $("#calcerror").html(calcerror);}
}
else { var calcerror = '
*Width has not been set properly
'; $("#calcerror").html(calcerror);}
}
else { var calcerror = '
*Depth has not been set properly
'; $("#calcerror").html(calcerror);}
}
else { var calcerror = '
*Pounds Per Square Inch has not been set properly
'; $("#calcerror").html(calcerror);}
};
function ChangeLbsSqFt(e) {
var t = e.value;
if (t == 1) { document.getElementById("ppsft").value = "2.33"; }
if (t == 2) { document.getElementById("ppsft").value = "3.495"; }
if (t == 3) { document.getElementById("ppsft").value = "4.66"; }
if (t == 4) { document.getElementById("ppsft").value = "6.99"; }
if (t == 5) { document.getElementById("ppsft").value = "9.32"; }
if (t == 6) { document.getElementById("ppsft").value = "11.65"; }
if (t == 7) { document.getElementById("ppsft").value = "13.98"; }
console.log(t);
};