ADVERTISEMENT
970x220

San Juan LGU, NGOs launch 'tingi-tingi' project vs plastic pollution

Published Nov 4, 2022 01:51 pm

The San Juan City local government, together with the two non-government organizations (NGOs), launched on Friday, Nov.4, a revolutionary program aimed at reducing plastic pollution in the country and increasing public awareness on recycling.

San Juan City Mayor Francis Zamora led the launching of the "Kuha sa Tingi" project at the San Juan City Hall, together with Greenpeace Philippines country director Lea Guerrero, Zero Waste campaigner Marian Ledesma, and Impact Hub Manila CEO and founder Ces Rondario.

"Kuha sa Tingi" is an environmental awareness project that will install refilling stations in 10 existing sari-sari stores in the city where the public can purchase different commodities such as shampoo and body wash, dishwashing liquid, liquid detergent, and fabric conditioner in smaller quantities, hence the term "tingi-tingi".

The project aims to reduce the selling of items in plastic sachets which bring harm to the environment.

“This is a culture that we want to develop, na (that) instead of buying sachets, bibili na lang ng tingi dito (we just buy commodities in small portions here)," Zamora said.

He said buyers are highly encouraged to bring their own reusable containers when they buy.

“San Juan City is committed to addressing the problem of plastic pollution in the country. We have already launched several projects that aim to reuse or recycle plastics. We believe that communities can lead the way to show that we can reduce, if not totally eliminate, single-use plastics. ‘Kuha Sa Tingi’ does just that by doing away with the sachets and other single-use plastics and promoting reuse and refill systems. This project protects the environment, reduces plastic waste, creates livelihoods, and supports a slow circular economy,” Zamora explained.

“Kuha sa Tingi reclaims our tingi culture, which was once defined by practical and sustainable practices like refilling reusable containers and purchasing only what you need. It’s about reimagining small volume retail into a zero waste model once more. By installing refilling stations in sari-sari stores and designing the model to consider the needs of the community, we can make plastic-free goods available for Filipinos from all socioeconomic sectors,” Ledesma said.

She said they aim to normalize the idea that people no longer need to use sachets, adding that companies also have to do their share in the reuse and refill systems.

“We need not just people to work on solutions, but governments like San Juan and corporations have to advance solutions that move us away from our dependency on plastics and dependency on fossil fuels,” she added.

Guerrero, for her part, said that partnering with San Juan City for the project is “a very happy occasion for Greenpeace”

She said the project is the first of its kind in the Philippines, noting that it is not just an ordinary sari-sari store but a system that brings to communities the products that can only be bought in big establishments before.

“This is a pioneering project that can be and should be replicated in other parts of the Philippines," Guerrero said,

“We are hoping that Kuha Sa Tingi will be adopted by more sari-sari stores after the pilot launch. I am also encouraging San Juanenos to support this effort so we can scale it to more stores in the future,” Mayor Zamora said.

"Kuha sa Tingi" is the latest San Juan environmental-focused initiatives that is considered a breakthrough.

In March, the city government partnered with Greenpeace, Plastic Credit Exchange, and Eastwest Builders Inc. as it shifts towards a greener and more environmentally conscious city in Metro Manila.

Zamora signed three memorandum of agreements (MOAs) with Greenpeace under the Livable and Lovable Cities Program.

Related Tags

mayor francis zamora san juan city Greenpeace
ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.