ADVERTISEMENT

Merry GCash season na! Here's your guide to making the holidays merrier with GCash

Published Dec 16, 2025 05:39 pm
With just a few weeks left until Christmas, the holiday rush is in full swing. From finding the most meaningful gifts to planning reunions and mapping out your itinerary for your much-awaited holiday trip, it’s the time of the year when moments feel fuller, brighter, and filled with anticipation. And when things sometimes feel like they’re happening all at once, having a little help goes a long way.
For a merrier, smoother holiday season, GCash is here to help! The country’s top e-wallet is bringing back the merry feeling through its Merry GCash celebration. This year, it’s bigger, better, and packed with even more deals and rewards, so all your holiday activities are merrier. Here’s everything GCash has to help you make the most of the season!
1. A new Christmas jingle from SB19 to lift your holiday mood
GCash and the Kings of P-Pop, SB19, have launched a new holiday jingle, “Make It Merry,” reminding everyone that, with a little GCash magic, you can make your favorite Christmas moments feel even more special. In the new music video featuring this collab, the SB19 boys are seen shopping gifts for their loved ones and paying seamlessly with GCash – a reminder that you don’t need to rush through the season; you can simply breeze through it, basta i-GCash mo!
2. A chance to turn your holiday spending into big prizes when you Shake It, Win It
The more you use GCash this holiday season, the more you get rewarded with amazing prizes when you play Shake It, Win It! For all your Christmas to-dos, like buying ingredients for noche buena, shopping for gifts, or picking out party outfits, just pay with GCash to earn entries.
This year, one lucky winner will bring home a brand-new BYD car, four winners will receive ₱1 million in GCash credits each, and 20,000 users will win up to ₱5,000 in GCash credits. But that’s not all! Up to 300,000 users will receive random GCash credits every day just by logging on the app.
3. The best deals of the season to help stretch your budget when you shop
And because holiday spending can pile up fast, GCash also helps you stretch your budget with exclusive deals online. When you shop on Lazada and TikTok Shop and choose GCash at checkout, you can unlock special deals and get that extra advantage when the spending gets a bit heavy this season!
If you find yourselves shopping at Robinson’s Department Store or SM Store, don’t worry! Use GCash to Scan to Pay, and you can also unlock more discounts!
4. Special promos at your favorite Christmas bazaars to make holiday shopping a breeze
GCash has also partnered with the biggest Christmas bazaars in the city this year. The best part? There will be bazaar-exclusive special hour promos that give you extra surprises and rewards when you pay with GCash. You can also earn more Shake It, Win It entries along the way!
Here’s where you can GCash this season:
Designers Holiday Bazaar, Glorietta, Makati: November 29 to December 7
Trendsetter’s Bazaar, SM Megamall, Mandaluyong: December 4 to 7 and December 18 to 21
World Bazaar Festival, World Trade Center Metro Manila, Pasay: December 13 to 22
The holidays are always better when things feel lighter and joy lives in the small moments - not lost in the rush. The Merry GCash season is back to make sure to turn every payment, every purchase, and every shake into a step toward a truly merry celebration. Stay connected by following @gcashofficial online to make sure you don’t miss out on any more exciting Merry GCash announcements.
ADVERTISEMENT
.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; } .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; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); 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); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); 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]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.