Doprava zdarma pro všechny objednávky nad 200 $.

Almost everyone makes this mistake: We grow plants that pests love more than we do!

objevte nejčastější omyly při pěstování rostlin a naučte se, jak se jim vyhnout. praktické rady pro zdravý růst vašich rostlin doma i na zahradě.

The flood of flowers and vegetables that decorate our gardens in 2025 often hides one unexpected complication: the plants that we grow with love are unfortunately becoming a magnet for pests. Aphids, spider mites and whiteflies know the right addresses to go to in order to find food and shelter. This phenomenon surprises even experienced gardeners from Zahradnictví Líbeznice, who are increasingly fighting the invasion of unwanted guests. What plants actually attract pests the most and how can we effectively combat them without chemical interventions? Let’s take a look at the top five plants that bring beauty and benefit to our gardens, but also attract the right pests. Thanks to tips with products from Substral, Kristalon and AGRO CS, getting to know these plants turns into a path to more effective care and greater joy from your green kingdom.

The most common plants that attract pests and how to protect them effectively

Plant pests choose their victims according to several criteria – sweet juices, delicate leaves or dense foliage. These characteristics make certain plants particularly attractive and sought after. Not only do pests find plenty of food on these plants, but also ideal conditions for reproduction. Your balcony and garden can quickly become a haven for these uninvited visitors. These are often aphids, spider mites, whiteflies or thrips, which can quickly weaken plants and threaten neighboring areas.

Let’s look at the five most common plants that attract pests the most, and how you can manage these problems using proven methods and products such as Nohel Garden or Forestina:

  • Lavender – popular for its scent, but also loved by aphids; regular inspection and planting of marigolds will help reduce pests.
  • Watercress – beautiful and edible, but a haven for whiteflies; yellow sticky boards and regular watering of the plants will keep whiteflies at bay.
  • Sunflower – a majestic plant that is often colonized by aphids; garlic and chives planted nearby help repel the pests.
  • Petunias – colorful garden gems that attract thrips; soapy water and marigolds are natural helpers in the fight against them.
  • Thuja – popular hedges that provide shelter for spider mites; regular pruning and plants such as sage can significantly reduce this problem.
Plant Main pests Effective prevention and protection Product recommendations
Lavender Aphids Checking the undersides of leaves, planting marigolds Substral, Nohel Garden
Cresscress Whiteflies Yellow sticky boards, regular rinsing Forestina, AGRO CS
Sunflowers Aphids Planting garlic and chives, regular inspection Kristalon, Cerberus
Petunia Thrips Soap solution, planting marigolds Plastia, Gardena
Thuja Squids Regular pruning, increased humidity, planting sage Forestina, Nohel Garden
Discover the most common mistakes when growing plants and find out how to avoid them. Practical tips and advice for the healthy growth of your plants at home and in the garden.

Protection against pests with natural methods – how to do it?

However, effective and gentle plant protection does not have to mean chemical products. In 2025, more and more gardeners rely on methods that respect the balance of the ecosystem. Horticulture Líbeznice and specialists from AGRO CS advise using organic preparations that are gentle on plants but ruthless on pests. It is also effective to plant plants that repel or attract pests to protect the main crops.

  • Plant marigolds next to lavender to repel aphids.
  • Yellow sticky boards around watercress to target whiteflies.
  • Plant garlic and chives near sunflowers as a natural repellent.
  • Marigolds around petunias as protection against thrips.
  • Sage around thuja to reduce spider mites and mites.

This combination of plants and measures will strengthen the natural defenses of your garden and you will not have to worry about its beauty or harvest. You can find more about garden care on sites like Majowo.cz, where there is advice from garden experts and tips on modern helpers such as products from Cerberos and Plastia.

Plants that suffer from pest damage most often and how to help them

Every gardener knows how frustrating it can be to watch their favorite plants start to struggle with yellow or silver spots, deformed flowers or slower growth. This aspect of garden care in 2025 is gaining importance, as many of us prefer ecological methods without chemical interventions. Let’s imagine how best to recognize and effectively solve these problems.

  • Aphids – cause yellow spots and reduce plant vitality.
  • Spider mites – lead to yellowing of needles and leaves, often in thujas.
  • Whiteflies – whiteflies covering the leaves of watercress.
  • Thrips – silvery spots on petunia flowers that deform the flowers.
  • Spider mites – small pests in dense foliage, especially in hedges.
Pests Symptoms of infestation Most common hosts Protective measures
Aphids Yellow spots, plant weakening Lavender, Sunflowers Regular washing, planting repellent herbs
Swirlflies Yellowing of needles Thuja Pruning, increasing humidity, sage
Whitefly White coating on leaves Nasturtium Glue plates, rinsing
Thrips Silver spots, flower deformation Petunia Soap solution, marigold
Mites Leaf damage Thuja, hedges Pruning, improving air circulation

Early recognition and the right solution will allow you to keep your garden healthy and lush throughout the season. Inspiration and more detailed advice are available at Majowo.cz.

Pest control products comparison

— all — High Medium
— all — Easy Medium
— all — Yes No
Table of comparison of properties of selected pest control products
Product (sorting) Efficiency Application Eco-friendly

No products match the specified filters.

// Data produktů s vlastnostmi v češtině pro lepší přehlednost uživatele // Originální data (anglicky) jsou mapována na české ekvivalenty pro zobrazení // Zdroj dat: vloženo přímo, není potřeba externí API // lze rozšířit, případně nahradit API dle potřeby const rawData = { „items“:[ {„name“:“Substral“,“effectiveness“:“High“,“application“:“Easy“,“eco_friendly“:“No“}, {„name“:“Kristalon“,“effectiveness“:“Medium“,“application“:“Medium“,“eco_friendly“:“Yes“}, {„name“:“AGRO CS“,“effectiveness“:“High“,“application“:“Easy“,“eco_friendly“:“Yes“}, {„name“:“Nohel Garden“,“effectiveness“:“Medium“,“application“:“Easy“,“eco_friendly“:“No“}, {„name“:“Forestina“,“effectiveness“:“Medium“,“application“:“Easy“,“eco_friendly“:“Yes“}, {„name“:“Cerberos“,“effectiveness“:“High“,“application“:“Medium“,“eco_friendly“:“No“}, {„name“:“Gardena“,“effectiveness“:“Medium“,“application“:“Easy“,“eco_friendly“:“Yes“}, {„name“:“Plastia“,“effectiveness“:“Medium“,“application“:“Easy“,“eco_friendly“:“Yes“} ] }; // Mapování originálních hodnot na české texty const translations = { effectiveness: { High: „Vysoká“, Medium: „Střední“ }, application: { Easy: „Snadná“, Medium: „Střední“ }, eco_friendly: { Yes: „Ano“, No: „Ne“ } }; // Current sorting state let currentSort = { key: null, asc: true }; // Uložení odkazů na DOM elementy const tbody = document.querySelector(„#comparisonTable tbody“); const filterEffectiveness = document.getElementById(„filterEffectiveness“); const filterApplication = document.getElementById(„filterApplication“); const filterEco = document.getElementById(„filterEco“); const clearFiltersBtn = document.getElementById(„clearFilters“); const noResultsMsg = document.getElementById(„noResults“); const sortableHeaders = document.querySelectorAll(„#comparisonTable th.sortable“); /** * Vykreslení tabulky podle dat a filtrů * @param {Array} items – filtrovaná a seřazená data */ function renderTable(items) { tbody.innerHTML = „“; if (items.length === 0) { noResultsMsg.style.display = „block“; return; } else { noResultsMsg.style.display = „none“; } items.forEach(item => { const tr = document.createElement(„tr“); tr.tabIndex = 0; // lepší přístupnost – fokus pro řádky tr.innerHTML = ` ${item.name} ${translations.effectiveness[item.effectiveness] || item.effectiveness} ${translations.application[item.application] || item.application} ${translations.eco_friendly[item.eco_friendly] || item.eco_friendly} `; tbody.appendChild(tr); }); } /** * Filtruje produkty podle vybraných filtrů * @returns {Array} filtrovaná pole produktů */ function filterItems() { return rawData.items.filter(item => { return ( (filterEffectiveness.value === „“ || item.effectiveness === filterEffectiveness.value) && (filterApplication.value === „“ || item.application === filterApplication.value) && (filterEco.value === „“ || item.eco_friendly === filterEco.value) ); }); } /** * Porovnání pro třídění, lexikograficky nebo podle určeného pořadí (u „effectiveness“ a „application“) * @param {string} key – kterou vlastnost porovnávat * @param {boolean} asc – true = vzestupně, false = sestupně */ function sortItems(items, key, asc) { if (!key) return items; // není třídění // Speciální pořadí pro effectiveness a application const orderMaps = { effectiveness: { „High“: 2, „Medium“: 1 }, application: { „Easy“: 2, „Medium“: 1 }, eco_friendly: { „Yes“: 2, „No“: 1 } }; return […items].sort((a, b) => { let aVal = a[key]; let bVal = b[key]; // Přiřadí číslo pro srovnání pokud máme mapu if (orderMaps[key]) { aVal = orderMaps[key][aVal] || 0; bVal = orderMaps[key][bVal] || 0; } if (aVal > bVal) return asc ? 1 : -1; if (aVal { th.setAttribute(„aria-sort“, „none“); }); updateTable(); } // Přidání event listenerů na filtry filterEffectiveness.addEventListener(„change“, () => { updateTable(); }); filterApplication.addEventListener(„change“, () => { updateTable(); }); filterEco.addEventListener(„change“, () => { updateTable(); }); // Tlačítko vymazat filtry clearFiltersBtn.addEventListener(„click“, () => { resetFilters(); }); // Podpora třídění kliknutím na hlavičku tabulky sortableHeaders.forEach(th => { th.style.cursor = „pointer“; th.addEventListener(„click“, () => { const key = th.dataset.sortKey; if (currentSort.key === key) { currentSort.asc = !currentSort.asc; } else { currentSort.key = key; currentSort.asc = true; } // Aktualizace aria-sort u všech hlaviček sortableHeaders.forEach(h => { if (h.dataset.sortKey === currentSort.key) { h.setAttribute(„aria-sort“, currentSort.asc ? „ascending“ : „descending“); } else { h.setAttribute(„aria-sort“, „none“); } }); updateTable(); }); // Podpora klávesnice Enter a mezerník pro třídění tabulky (přístupnost) th.addEventListener(„keydown“, e => { if(e.key === „Enter“ || e.key === “ „){ e.preventDefault(); th.click(); } }); }); // Inicializace tabulky updateTable();

Sdílet na: