Scrapers & Knives

Showing all 6 results

£1.84 Excl. VAT
Sale!

Filling Knives

4 Pk Filling Blades

£1.43 Excl. VAT£1.14 Excl. VAT

Heavy Duty Scrapers

4″ Titan Heavy Duty Scraper

£12.05 Excl. VAT
£9.56 Excl. VAT
£3.36 Excl. VAT
Sale!
£8.63 Excl. VAT£6.53 Excl. VAT
incl. tax excl. tax
jQuery(function ($) { function checkAndUpdatePrice() { var newPriceHtml = $('.woocommerce-variation-price .price').html(); // Get variation priceif (newPriceHtml) { console.log("Updating price: ", newPriceHtml); // Debugging output $('.product-price-container.is-larger .price-wrapper .price').html(newPriceHtml); } else { // If price is not found, keep checking every 100ms (max 2 seconds) setTimeout(checkAndUpdatePrice, 100); } }// Run when a variation is selected $(document).on('found_variation', 'form.variations_form', function () { setTimeout(checkAndUpdatePrice, 100); // Start checking for price update });// Reset price when no variation is selected $(document).on('reset_data', 'form.variations_form', function () { location.reload(); // Restore the original "From £XX.XX" price }); });