{ "@context": "https://schema.org", "@type": "ItemList", "itemListElement": [ { "@type": "ListItem", "position": 1, "item": { "@type": "Product", "name": "8 x 8 cm Anzuchttopf quadratisch auf Holzfaser Basis", "description": "", "image": [ "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/552311/preview/552311-8-x-8-cm-Anzuchttopf-quadratisch-auf-Holzfaser-Basis--20-Stueck--2000-0603---0.JPG", "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/552311/middle/552311-8-x-8-cm-Anzuchttopf-quadratisch-auf-Holzfaser-Basis--20-Stueck--2000-0603---0.JPG", "" ], "offers": { "@type": "Offer", "minPrice": 3.99, "maxPrice": 3.99, "price": 3.99, "priceCurrency": "EUR", "availability": "https://schema.org/InStock" }, "url": "https://www.samenhaus.de/8-x-8-cm-anzuchttopf-quadratisch-auf-holzfaser-basis-20-stueck-holzfaser-anzuchttoepfe-von-flortus/a-552311" } } , { "@type": "ListItem", "position": 2, "item": { "@type": "Product", "name": "6 x 6 cm Anzuchttopf quadratisch auf Holzfaser Basis", "description": "", "image": [ "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/552316/preview/552316-6-x-6-cm-Anzuchttopf-quadratisch-auf-Holzfaser-Basis--42-Stueck--2000-0608---0.JPG", "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/552316/middle/552316-6-x-6-cm-Anzuchttopf-quadratisch-auf-Holzfaser-Basis--42-Stueck--2000-0608---0.JPG", "" ], "offers": { "@type": "Offer", "minPrice": 4.99, "maxPrice": 4.99, "price": 4.99, "priceCurrency": "EUR", "availability": "https://schema.org/InStock" }, "url": "https://www.samenhaus.de/6-x-6-cm-anzuchttopf-quadratisch-auf-holzfaser-basis-42-stueck-holzfaser-anzuchttoepfe-von-flortus/a-552316" } } , { "@type": "ListItem", "position": 3, "item": { "@type": "Product", "name": "6 cm Anzuchttopf rund auf Holzfaser Basis", "description": "", "image": [ "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/555839/preview/555839-6-cm-rund-Anzuchttopf-auf-Holzfaser-Basis-552300-6-cm-Anzuchttopf-rund-auf-Holzfaser-Basis--30-Stueck--2000-0592---0.jpg", "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/555839/middle/555839-6-cm-rund-Anzuchttopf-auf-Holzfaser-Basis-552300-6-cm-Anzuchttopf-rund-auf-Holzfaser-Basis--30-Stueck--2000-0592---0.jpg", "" ], "offers": { "@type": "Offer", "minPrice": 3.59, "maxPrice": 3.59, "price": 3.59, "priceCurrency": "EUR", "availability": "https://schema.org/InStock" }, "url": "https://www.samenhaus.de/6-cm-anzuchttopf-rund-auf-holzfaser-basis-holzfaser-anzuchttoepfe-von-flortus/a-555839" } } , { "@type": "ListItem", "position": 4, "item": { "@type": "Product", "name": "Kokos Quelltöpfe 36 mm", "description": "", "image": [ "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/551971/preview/551971-Kokos-Quelltoepfe-36-mm-2000-0583-24x---0.jpg", "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/551971/middle/551971-Kokos-Quelltoepfe-36-mm-2000-0583-24x---0.jpg", "" ], "offers": { "@type": "Offer", "minPrice": 3.99, "maxPrice": 3.99, "price": 3.99, "priceCurrency": "EUR", "availability": "https://schema.org/InStock" }, "url": "https://www.samenhaus.de/kokos-quelltoepfe-36-mm-kokos-quelltoepfe-von-flortus/a-551971" } } , { "@type": "ListItem", "position": 5, "item": { "@type": "Product", "name": "BIO Kokos Quelltöpfe 36 mm", "description": "", "image": [ "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/551970/preview/551970-BIO-Kokos-Quelltoepfe-36-mm-2000-0582-24x---0.jpg", "https://cdn02.plentymarkets.com/4upha8em6p5v/item/images/551970/middle/551970-BIO-Kokos-Quelltoepfe-36-mm-2000-0582-24x---0.jpg", "" ], "offers": { "@type": "Offer", "minPrice": 4.99, "maxPrice": 4.99, "price": 4.99, "priceCurrency": "EUR", "availability": "https://schema.org/InStock" }, "url": "https://www.samenhaus.de/bio-kokos-quelltoepfe-36-mm-bio-kokos-quelltoepfe-von-flortus/a-551970" } } ] } Suchergebnisse für: topf | Samenhaus Samen & Sämereien

Suchergebnisse für topf (256 Treffer)

256 Ergebnisse gefunden
​ ​ ​ ​ ​ ​
Filter
var showPopupDelay = 2000; var showPopupLiveTime = 1; function showPopup() { setTimeout(function() { $('#popup').modal('show'); }, showPopupDelay); } function setPopupDisplayTime() { try { localStorage.setItem('popupLastShown', new Date().getTime().toString()); } catch (e) { console.error('Local storage is not available:', e); } } function shouldShowPopup() { try { const lastShown = localStorage.getItem('popupLastShown'); if (!lastShown) { return true; } const currentTime = new Date().getTime(); const timeDifference = currentTime - parseInt(lastShown, 10); const daysSinceLastShown = timeDifference / (1000 * 3600 * 24); const daysBeforeShowingAgain = showPopupLiveTime; return daysSinceLastShown >= daysBeforeShowingAgain; } catch (e) { console.error('Error checking popup display condition:', e); return true; } } function handlePopupDisplay() { if (shouldShowPopup()) { showPopup(); setPopupDisplayTime(); } } $(document).ready(function(){handlePopupDisplay();});