Our Website Does Not Show LIVE Stock Levels. Please Call 09 887-8350 or Email sales@thecartridgewarehouse.co.nz with the SKU of the product you are after to check availability before ordering.
We also have over 3,000 Stationery products. Click on the Stationery tab on the left.
$( document ).ready(function() {
$('label.button.button--small.card-figcaption-button input').on ('click', function() {
$(this).closest('.custom-checkbox').toggleClass('selected');
});
});
// ADD PRICES-HIDDEN CLASS IF LOGIN REQUIRED
$(document).ready(function(){
$("article.card .card-text .price-visibility.restricted").each(function(){
if ($(this).text().trim().length) {
$(this).addClass("price-hidden");
$(this).closest('div.card-body').addClass("prices-hidden");
$('.compare').hide();
}
});
});
// CHECK IF RATINGS ARE ENABLED
$(document).ready(function() {
var $myDiv = $('.card-text[data-test-info-type="productRating"]');
if ( $myDiv.length==0){
$('div.card-body').addClass("ratings-disabled");
$('article.card').addClass("ratings-disabled");
}
});
if ( $('.price-section').hasClass('price-section--withTax') ){
$('div.card-body').addClass('withTax');
}
if ( $('.price-section').hasClass('price-section--withoutTax') ){
$('div.card-body').addClass('withoutTax');
}