ADVERTISEMENT

The right time, the Wong Place

A casual Chinese comfort food concept

Published Sep 20, 2023 12:55 am
unnamed-min.jpg

Located at The Verve BGC, on 27th St. and 7th Ave., Wong Place is a casual Chinese comfort food concept whose time has obviously come, given how popular it’s been since its soft opening in mid-August. Brainchild of Grant Teng, his parents, noted restaurateurs Eric and Emelda Teng, were proud and happy to give Grant and his sister the credit for coming up with the concept, deciding on the dishes on the menu, and creating the interiors that are a smart mix of contemporary bar, with traditional Chinese eatery. 

unnamed (1)-min.jpg
Interiors of Wong Place

What Wong Place offers are familiar dishes, from dim sum to noodles and congee, to main courses, variations of fried rice, and strong drinks from the bar - as the group has invested in creating a strong after-hours profile. And if you peruse the menu, you’ll see how smart it is in making sure a host of practically anyone’s go-to’s and favorites, will be found in the listing. Plus, they don’t go overboard with the number of dishes to be found in the menu. Unlike formal Chinese restaurants that pride themselves on page after page of dishes; Wong seems to divine that the required time for ordering should be as ‘comforting’ as the food. Establish enough options, make certain they’re done well, and inject some tweaks to make old favorites feel fresh and exciting!

unnamed (2)-min.jpg
The Pan-Fried Wongtons and Hakaw

The Pork Siomai with Tobiko, the Hakaw, the excellent Beef Balls, and the spicy Pan-Fried Wongtons were our Dimsum choices. The Wongtons was the surprising favorite for me and my boys. I’m not a big fan of Beef Balls, but the boys declared this one as one of their favorites, with the tenderness a definite plus factor.

unnamed (3)-min.jpg
Smoked Duck Noodles

The Noodles were the Smoked Duck Wonton Noodle Soup, and the dry Sambal Shrimp Fried Noodles. The Smoked Duck really knew how to hit home, Matteo immediately enthusiastic about the broth, which for him is always super-important. The Sambal Shrimp Noodles is what I’d recommend if opting for dry noodles as a replacement for ordering Rice. Not a popular choice here in Manila, but if you’re in that kind of mood.

unnamed (4)-min.jpg
Sambal Shrimp Noodles

The Pork Chop Fried Rice was a mild surprise as it comes with literally slices of a whole pork chop sitting on the rice. There are greens as well, but it was surprising as my youngest declared it was a rice topping meal unto itself, and he was happy for that discovery.

unnamed (5)-min.jpg
Pork Chop Fried Rice

When ordering the main courses, do not miss out on the Calamansi Chicken. This early, I’ll proclaim this dish as the most likely to become bestseller. It’s their variation on lemon chicken, and I really loved the calamansi variation. The Mapo Tofu was a good choice for something hot and wet to be among one’s main courses - it’s served in a hot pot. 

unnamed (6)-min.jpg
My favorite, the Calamansi Chicken

At this point, we were so stuffed, we didn’t even think of dessert. That’s for our next trip to the Wong Place. It’s certainly the right time to be the right Wong Place. The BGC crowd have welcomed the eatery with a really tight embrace - keen prices, generous portions, high quality, and a string roster of dishes to choose from.

Related Tags

MBFoodies MB Lifestyle Online Philip Cu Unjieng
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.