• Fotobatohy
  • Need Help?
    +420 228 811 811
    Mo-Fri: 9AM – 5PM CET
  • My account
  • is empty
    for 0 Kč
Urth 75 x 85mm ND64 (6 Stop) Filter (Plus+)
The professional ND64 Square Filter Plus+ provides 6 f stops of light reduction, giving you better control with long exposure and depth of field techniques in low light.


With less light entering your camera, you can also use wider apertures in low light for a beautiful shallow depth of field effect without overexposing images. Cinematographers can use our ND64 Filter Plus+ to create more cinematic effects in low light without losing quality or overexposing the shot.


The Plus+ range features 20 layers of nano coating providing a more consistent transmission curve for truer light reduction, easier cleaning and better protection against water, oil and scratches.


Professional German glass
Industry leading German B270 SCHOTT optical glass is coated with a 20 layer nano coating for truer light transmittance, better protection, and easier cleaning.


6 f stop reduction
Allowing 1.5% light transmittance, this filter gives you more latitude with depth of field and motion blur effects in low light.


Standard fit
The square filters are 2mm thick and fit with most square filter holders.


Positive impact
Urth's goal is to make a lasting positive impact on the planet. 
By consciously designing products that help people engage with nature and planting 1 tree for every product. Urth's mission is to plant 1 billion trees by 2032.


Conscious design
There is a constant search for ways to minimize the negative impact on the planet we love. When new products are made, low impact materials are sought and designs are refined to minimize waste. All packaging is redesigned to remove all plastic, use recycled materials and ensure. ,

Made with world leading German SCHOTT.
No colour cast, true colours.
Dramatic long exposure and motion blur effects.
Better depth of field with wider apertures.
Cut 3 f stops for stronger long exposure.
Slow your shutter for a more cinematic look.
Lifetime warranty
 Specification
ZnačkaUrth
 
We use cookies for the proper functioning of our website and its functions. With the help of cookies, we also, for example, remember your preferred language, increase the relevance of the displayed ads for you, calculate the number of visits to the site and remember your settings made on the site.
function syncPiecesAndDeliveryToPava(scope) { // scope = dokument / konkrétní produkt / konkrétní karta const containers = scope.querySelectorAll('#product_list > li.p_cart_block, .p_detail_right, body'); // Helper: vytáhni datum z .delivery-estimate (např. "Obdržíte do 20.01") function extractDateText(deliveryEl) { if (!deliveryEl) return ''; const t = (deliveryEl.textContent || '').trim(); const m = t.match(/(\d{2}\.\d{2})/); return m ? m[1] : ''; } // Helper: vytáhni kusy z textu dostupnosti ("Skladem 1 ks" / "Centrální sklad 8 ks") function extractPiecesFromAvailabilityText(text) { const t = (text || '').replace(/\s+/g, ' ').trim(); const m = t.match(/(\d+)\s*ks/i); return m ? m[1] : ''; } // Pro každý produkt/kartu zkus najít zdroje a cíle uvnitř const productRoots = scope.querySelectorAll('#product_list > li.p_cart_block, .p_detail_right'); productRoots.forEach(root => { const delivery = root.querySelector('.delivery-estimate'); const deliveryDDMM = extractDateText(delivery); if (!deliveryDDMM) return; // když není datum, nic neduplikuj // Zdroje dostupnosti (detail i výpis) const availabilityEl = root.querySelector('.p_detail_availability [data-variant="availability"]') || root.querySelector('.p_block .p_g.p_action') || root.querySelector('.p_g[data-variant="availability"]') || root.querySelector('.p_g.p_action'); const pieces = extractPiecesFromAvailabilityText(availabilityEl ? availabilityEl.textContent : ''); // Cíl: modul p_ava (může být div nebo span, proto obecně) const pava = root.querySelector('div.p_ava.p_g.p_action') || root.querySelector('span.p_ava.p_g.p_action') || root.querySelector('.p_ava.p_g.p_action'); if (!pava) return; // Sestav text: zachovej původní text a jen doplň ks + datum do druhého řádku // 1) doplnění ks (pokud máš) const baseText = (pava.textContent || '').trim() || (availabilityEl ? availabilityEl.textContent.trim() : ''); const baseNoPieces = baseText.replace(/\s*\d+\s*ks\b/ig, '').trim(); const piecesPart = pieces ? ` ${pieces} ks` : ''; const line1 = `${baseNoPieces}${piecesPart}`.trim(); // 2) datum na nový řádek (stejný pattern jako u detailu) const line2 = `Obdržíte do ${deliveryDDMM}`; // aby se to neduplikovalo opakovaně: // držíme si vlastní span uvnitř pava let extra = pava.querySelector('.pava-extra'); if (!extra) { extra = document.createElement('span'); extra.className = 'pava-extra'; extra.style.display = 'block'; // jen layout, bez stylování barvy apod. pava.appendChild(extra); } // nastav texty pava.childNodes.forEach(n => { // necháme jen text node prvního řádku + extra span // (jednoduše: přepíšeme obsah bezpečně) }); // bezpečný přepis: nejdřív vyčisti pava, pak vlož 1. řádek + extra pava.textContent = line1; pava.appendChild(extra); extra.textContent = line2; }); } // zavolej po tvém hlavním výpočtu / vložení .delivery-estimate syncPiecesAndDeliveryToPavaModule(); function syncPiecesAndDeliveryToPavaModule(){ syncPiecesAndDeliveryToPava(document); }