/* Default comment here */
jQuery(document).ready(function() {
var swiper = new Swiper(".hero-banner", {
autoplay: {
delay: 3000, // Set delay in milliseconds (adjust as needed)
disableOnInteraction: false, // Autoplay will continue after user interaction
},
loop: true,
navigation: {
nextEl: ".swiper-button-next",
prevEl: ".swiper-button-prev",
},
});
jQuery('.toggle-category-button').click(function() {
jQuery('.food-category-con').slideToggle(); // Use slideToggle() for a sliding effect
});
});
jQuery(document).ready(function($) {
$('.food-category-item-box').each(function() {
if ($(this).find('.food-category-sub-items').children().length > 0) {
$(this).find('.category-dropdown-arrow').show();
} else {
$(this).find('.category-dropdown-arrow').hide();
}
});
$('.category-dropdown-arrow').on('click', function() {
var $currentSubItems = $(this).siblings('.food-category-sub-items');
$('.food-category-sub-items').not($currentSubItems).slideUp();
$currentSubItems.slideToggle();
});
});
jQuery(document).ready(function($) {
$('.copy_link_button').on('click', function(event) {
console.log('clicked');
event.preventDefault();
var linkToCopy = $(this).find('a').attr('href');
var jQuerytempInput = $('<input>');
$('body').append(jQuerytempInput);
jQuerytempInput.val(linkToCopy).select();
document.execCommand('copy');
jQuerytempInput.remove();
console.log('Link copied: ' + linkToCopy);
$(this).find('span').text('Copied');
setTimeout(() => {
$(this).find('span').text('Copy Link');
}, 2000);
});
});
jQuery(document).ready(function($) {
function applyBlendMode() {
if ($('.food-menu-products-main.loading').length) {
$('body').css({
'background-color': '#0000005e',
'mix-blend-mode': 'overlay'
});
} else {
$('body').css({
'background-color': '',
'mix-blend-mode': ''
});
}
}
const observer = new MutationObserver(function(mutationsList) {
applyBlendMode();
});
observer.observe(document.body, { attributes: true, childList: true, subtree: true });
applyBlendMode();
});
jQuery(document).ready(function ($) {
// Opening and closing indication JS code start
function isRestaurantOpen(restaurant) {
var timezone = restaurant.data('timezone');
if (!timezone) {
console.error("Invalid timezone: ", timezone);
timezone = 'UTC'; // Fallback to UTC if timezone is invalid
}
var hours = restaurant.data('hours');
var currentDate = new Date();
var options = { timeZone: timezone, hour: '2-digit', minute: '2-digit', hour12: true };
var currentTimeString = new Intl.DateTimeFormat('en-US', options).format(currentDate);
var currentTime = parseTime(currentTimeString);
var currentDayIndex = currentDate.toLocaleDateString('en-US', { timeZone: timezone, weekday: 'long' });
var dayHours = getDayHoursForToday(hours, currentDayIndex);
if (dayHours === "Closed") {
return { open: false, message: "Currently Closed", className: "closed" };
}
var timeRange = dayHours.split("–");
if (timeRange.length < 2) {
console.error(`Invalid time range format: ${dayHours}`);
return { open: false, message: "Invalid Time Format", className: "closed" };
}
var openTime = parseTime(timeRange[0].trim());
var closeTime = parseTime(timeRange[1].trim());
if (isTimeBetween(currentTime, openTime, closeTime)) {
return { open: true, message: "Currently Open", className: "open" };
} else {
return { open: false, message: "Currently Closed", className: "closed" };
}
}
function parseTime(timeString) {
var [hour, minutePart] = timeString.replace(/[^0-9:APM]/gi, '').split(":");
var minute = parseInt(minutePart.match(/\d+/) || "0");
var isPM = timeString.toUpperCase().includes("PM");
hour = parseInt(hour);
if (isPM && hour !== 12) hour += 12;
if (!isPM && hour === 12) hour = 0;
return { hour, minute };
}
function getCurrentTimeInMinutes(time) {
return time.hour * 60 + time.minute;
}
function isTimeBetween(current, open, close) {
var currentMinutes = getCurrentTimeInMinutes(current);
var openMinutes = getCurrentTimeInMinutes(open);
var closeMinutes = getCurrentTimeInMinutes(close);
if (openMinutes > closeMinutes) {
return currentMinutes >= openMinutes || currentMinutes < closeMinutes;
}
return currentMinutes >= openMinutes && currentMinutes < closeMinutes;
}
function getDayHoursForToday(hours, currentDayName) {
var lines = hours.replace(/<br\s*\/?>/g, '\n').split('\n');
for (var line of lines) {
var [day, time] = line.split(": ");
if (day.trim() === currentDayName) {
return time || "Closed";
}
}
return "Closed";
}
// Loop through each restaurant
$('.restaurant-time').each(function () {
var $this = $(this);
var status = isRestaurantOpen($this);
$this.html(status.message);
$this.closest('.restaurant-time').removeClass('open closed').addClass(status.className); // Update the container class
});
function updateRestaurantStatus(container) {
$(container).find('.restaurant-time').each(function () {
var $this = $(this);
var status = isRestaurantOpen($this);
$this.html(status.message);
$this.closest('.restaurant-time').removeClass('open closed').addClass(status.className);
});
}
// Opening and closing indication JS code end
$('#all-restaurants').prop('checked', true).prop('disabled', true);
var previousResponse = '';
var canLoadMore = false; // To track if more posts can be loaded
var paged = 2; // For pagination
var loading = false; // To track if a request is in progress
function getSearchTerm() {
return $('#food-menu-search').val();
}
function getSelectedTaxonomies() {
var selectedTaxonomies = [];
$('.restaurant-filter:checked').each(function () {
selectedTaxonomies.push($(this).data('termid'));
});
return selectedTaxonomies;
}
function filterPosts(searchTerm, selectedTaxonomies, isInitialLoad = false) {
$.ajax({
type: 'POST',
url: '/wp-admin/admin-ajax.php',
data: {
action: 'filter_restaurants',
search_term: searchTerm,
taxonomies: selectedTaxonomies
},
beforeSend: function () {
if (!isInitialLoad) {
$('#food-menu-container').addClass('loading');
}
},
success: function (response) {
if (response.data && response.data.content !== previousResponse) {
$('#food-menu-container').html(response.data.content);
previousResponse = response.data.content;
canLoadMore = response.data.has_more_posts; // Update based on response
updateRestaurantStatus('#food-menu-container');
} else {
canLoadMore = false; // No posts available
}
},
complete: function () {
if (!isInitialLoad) {
$('#food-menu-container').removeClass('loading');
}
loading = false; // Allow new requests
}
});
}
// Initial load with "All Restaurants" selected
filterPosts(getSearchTerm(), getSelectedTaxonomies(), true);
// Handle filter change
$('.restaurant-filter').on('change', function () {
const allRestaurantsCheckbox = $('#all-restaurants');
const selectedCheckbox = $(this);
if (selectedCheckbox.is(allRestaurantsCheckbox)) {
// If "All Restaurants" is checked, uncheck all others and disable them
if (selectedCheckbox.is(':checked')) {
$('.restaurant-filter').not(allRestaurantsCheckbox).prop('checked', false).prop('disabled', true);
} else {
// If unchecked, enable all other filters
$('.restaurant-filter').not(allRestaurantsCheckbox).prop('disabled', false);
}
} else {
// If any other checkbox is checked
if (selectedCheckbox.is(':checked')) {
// Uncheck "All Restaurants" and disable it
allRestaurantsCheckbox.prop('checked', false).prop('disabled', true);
// Uncheck all other checkboxes except the current one
$('.restaurant-filter').not(selectedCheckbox).prop('checked', false);
} else {
// If no other checkboxes are selected, enable "All Restaurants"
if ($('.restaurant-filter:checked').length === 0) {
allRestaurantsCheckbox.prop('checked', true).prop('disabled', true);
}
}
}
paged = 2; // Reset pagination
filterPosts(getSearchTerm(), getSelectedTaxonomies());
});
// Handle search input
$('#food-menu-search').on('input', function () {
paged = 2; // Reset pagination
filterPosts(getSearchTerm(), getSelectedTaxonomies());
});
// Handle "Load More" functionality on scroll
$(window).scroll(function () {
if (canLoadMore && !loading && $(window).scrollTop() + $(window).height() >= $(document).height() - 100) {
loading = true;
const searchTerm = getSearchTerm();
const selectedTaxonomies = getSelectedTaxonomies();
$.ajax({
url: '/wp-admin/admin-ajax.php',
type: 'POST',
data: {
action: 'load_more_restaurants',
paged: paged,
search_term: searchTerm,
taxonomies: selectedTaxonomies,
},
beforeSend: function () {
$('#food-menu-container').append('<div class="loading-text">Loading...</div>');
},
success: function (response) {
if (response.data && response.data.content) {
$('#food-menu-container').append(response.data.content);
paged++;
canLoadMore = response.data.has_more_posts;
updateRestaurantStatus('#food-menu-container');
} else {
canLoadMore = false;
}
},
complete: function () {
$('.loading-text').remove();
loading = false;
},
});
}
});
});
jQuery(document).ready(function($){
var content = $('.rest-list-wrapp .elementor-cta__description');
var maxLength = 150;
content.each(function() {
var fullText = $(this).text();
if(fullText.length > maxLength){
var shortText = fullText.substring(0, maxLength);
$(this).html(
shortText +
'<span class="dots">...</span>' +
'<span class="more-text" style="display:none;">' +
fullText.substring(maxLength) +
'</span>' +
' <a href="#" class="read-more">Read More</a>'
);
}
});
$(document).on('click', '.read-more', function(e){
e.preventDefault();
var parent = $(this).closest('.rest-list-wrapp .elementor-cta__description');
parent.find('.dots, .more-text').toggle();
if($(this).text() === 'Read More'){
$(this).text('Read Less');
} else {
$(this).text('Read More');
}
});
});
jQuery(window).on('load', function() {
if( jQuery('#all-restaurents').length > 0 ) {
jQuery('#all-restaurents').trigger('click');
}
});
jQuery(document).ready(function() {
// Attach a click event handler to the accordion title link
jQuery('.fw-bold.text-decoration-none').on('click', function() {
var accordionID = $(this).attr('href'); // Get the href value of the clicked accordion title
var radioButtons = $(accordionID + ' input[type=radio]'); // Get all radio buttons inside the accordion
if (radioButtons.length === 1) {
radioButtons.prop('checked', true).trigger('click'); // If only one radio button, check it
}
});
});
Please check back as updates are happening in real time as more and more establishments announce their participation. We will continue to update and add information.
Dozens of New Mexico restaurants are offering free meals for kids, the elderly, the homeless, and veterans during the SNAP benefit pause. See participating locations and verify details directly.
Thank you all for your strength, support, and spirit! – Robert
Burrow Cafe – ABQ 12501 Candelaria Rd. NE, Ste.F Free kids meal. Choice of oatmeal w/brown sugar & syrup, two eggs any style w/toast or crepe, or kids size ham & cheese crepe. Kids must be present.
Chicken Salad Chick – ABQ 10621 Unser Blvd. Ste. I J A free kids’ meal – no purchase necessary. Kids must be present.
Chicken Salad Chick – ABQ 2100 Louisiana Blvd. NE, Ste. 220 A free kids’ meal – no purchase necessary. Kids must be present.
Fusion Tacos- Check Below for Participating Locations With recent changes to SNAP benefits, we want to do our part for the community. Fusion Tacos will be offering FREE Fusion Kids Meals — no questions asked, no purchase necessary — until SNAP benefits are restored. Just stop by any participating location, ask for a Fusion Kids Meal, and make sure the child is present — limit one meal per child . (Participating locations will be tagged in this post.) A special thank you to our sister company, Las Abuelitas Tortillería ,for donating their delicious tortillas to help us support this cause. Because every child deserves a good meal, always.
Great Harvest Bread Company – ABQ 11200 Montgomery Blvd. NE Free kids lunch. Choice of PBJ, ham & cheese, or turkey & cheese, small cookie, and a bag of chips. Mention “we got this” kids lunch special. Kids must be present.
La Finca Bowls 300 Broadway Blvd NE G, Albuquerque, NM 87102 We will have a daily pool of donated tickets (some from us, and some hopefully from those who want to give) that are available for those who need some extra help right now while SNAP benefits are down. Pre-paid tickets will be near the register, and can be passed to the cashier to redeem a free bowl! No age limitations or questions this offer stands until SNAP benefits are available again.
Mrs. Sprinkles Ice Cream – ABQ 3107 Eubank Blvd. NE A free mini scoop of ice cream (any flavor!) sprinkles included. Kids must be present. If you drop off non-perishable food items receive a coupon for 15% off a purchase through 12/1/2025.
Richie B’s – ABQ 7200 Montgomery Blvd. NE, Ste. A2 Free 1-topping slice of pizza from an 18″ pizza. Kids must be present.
Rio Grande Social – ABQ 10127 Coors Blvd. NW 1. Free cheese pizza to school aged kids. Kids must be present. 2. Donate more than 10 non-perishable food items and receive 10% off your bill (does not include alcohol.) 3. Saturday & Sunday through SNAP crisis, disabled veterans & elderly will receive a free breakfast platter to include 2 eggs, bacon or sausage, papitas & toast.
Stuffed Lust Sopapilla Company – ABQ Providing 5 complete Thanksgiving dinners. Random draw held 11/15/2025 Nominate a family here: stuffedlust@gmail.com
Subway – Rio Grande Blvd NW location – ABQ 2400 Rio Grande Blvd. NW Free kids meal for kids under 18. Kids sandwich, juice box or small fountain drink, and applesauce or chips.
Tasty Pot NM – ABQ 8050 Academy Dr. NE Mention “Tasty Kid’s Special” for choice of: Kids Panda chicken & rice, Kids popcorn chicken, mozzarella sticks, or fried dumplings. Kids must be present.
The Crepe Brulee – ABQ 6001 San Mateo Blvd. NE Every Wednesday one free menu item or custom ice cream cup to kids 10 years and younger. Kids must be present.
The Le Bakery – ABQ 1924 Juan Tabo Blvd. NE, Ste. D Free cheesy bread or an egg sandwich. Kids must be present. Not on menu – just ask.
The Yeller Sub – ABQ 7200 Montgomery Blvd. NE, Ste. G1 Free kids meal. Mention “Got your back kids special.” Kids must be present.
Tomasita’s – ABQ 500 S Guadalupe St, Santa Fe, NM 87501 Our community takes care of each other. Starting today, furloughed federal workers and their families can enjoy free meals with us — no questions asked, just show your federal ID. You’ve always supported us. Now, it’s our turn.
Urban Hot Dog Company – ABQ 10250 Cottonwood Park NW, Ste. 400 Classic Starter Hot Dog – mention UHDC Kids Special – Kids must be present
Santa Fe
Atrisco Bar & Cafe – Santa Fe Located inside the Devargas Center at 193 Paseo De Peralta, Santa Fe, NM 87501 We know that times are uncertain for many right now. As a local, family-owned restaurant, we want to do what we can to give back to the people who serve our country every day. Starting November 1st, here at Atrisco Café & Bar we are opening our doors to furloughed federal employees and their families — offering a warm place to gather and a good meal to share, at no cost. This effort comes from our heart and our community spirit. We’re proud to stand with those affected and to offer a bit of comfort and connection during this difficult time. Don’t forget your federal ID — all IDs will be verified
Beer Creek Brewing Company 3810 HWY 14, SANTA FE, NM 87508 FREE KIDS PIZZA While SNAP benefits are temporarily halted, we want to do our part to support local families. Every child aged 17 and under will receive a free Kids Pizza — no purchase necessary, no questions asked. Please limit to one meal per child per day. Children must be present, and the offer applies to dine-in only. This isn’t about politics — it’s about our community. We believe that no child should ever go hungry. Bonita Restaurant 1814 2nd St, Santa Fe, NM 87505 Times are hard but tacos are good, come by Bonita to get some tacos. Macaroni con queso y tacos ahora son gratis para niños menores de 12 años. Apoyando a nuestra comunidad en tiempos difíciles. En confianza ven trae a tus niños a disfrutar de algo completamente gracias. Dios les bendiga siempre.
Burrito Co. – Santa Fe Plaza 111 Washington Ave, Santa Fe, NM 87501 Free kids enchilada. Kid must be present for dine-in service. Off good until SNAP benefits are restored. This particular offer- no questions asked. Although our normal kids’ menu is in fact 12 and under. This offer is intended for less restriction/wider outreach as we await the restoration of snap benefits.
Cafe Castro – Santa Fe 2811 Cerrillos Rd, Santa Fe, NM 87507 Free bacon & cheese burrito for any child under 12. Child must be present. Offer good during SNAP shutdown.
Fusion Tacos-Check Below for Participating Locations With recent changes to SNAP benefits, we want to do our part for the community. Fusion Tacos will be offering FREE Fusion Kids Meals — no questions asked, no purchase necessary — until SNAP benefits are restored. Just stop by any participating location, ask for a Fusion Kids Meal, and make sure the child is present — limit one meal per child . (Participating locations will be tagged in this post.) A special thank you to our sister company, Las Abuelitas Tortillería ,for donating their delicious tortillas to help us support this cause. Because every child deserves a good meal, always. Available at these participating locations. https://fusiontacosnm.com/locations/
Airport Rd.-Santa Fe
Cottonwood-ABQ
Espanola
Downtown-Santa Fe
El Dorado – Santa Fe
Green Jeans Food Hall-ABQ
Las Abuelitas Tortilleria
Las Vegas
Los Alamos-Bathtub Row Brewery
Pojoaque
Santa Fe Brewery
Santa Fe Place Mall-Santa Fe
Taos Location
Milagro – Santa Fe 3482 Zafarano Dr C, Santa Fe, NM 87507 All kids meals $1.99 through November
Raices and Sazon (formaly known as Jaripeo Beer and Grill) 3565 Cerrillos Rd Santa Fe NM, 87507t Hello everyone. Raices and Sazon (formerly known as Jaripeo Beer and Grill) is a small family-owned business that has just opened. We understand the hard situation of SNAP benefits being cut off. Starting Nov 3rd, we are offering free pupusas de queso con frijoles for 17-year-olds and under on Mondays and Thursdays! Child MUST be present! Dine in ONLY. -This isn’t about politics- this is about our community. No child should ever go a day without a meal.
Hola a todos. Raíces y Sazón (formalmente conocido como Jaripeo Beer and Grill) es una pequeña empresa propiedad de una familia que abrió no hace mucho, entendemos la difícil situación de los beneficios de SNAP que se están cortando. ¡Empezando el 3 de Nov estaremos ofreciendo pupusas de queso con frijoles gratis para menores de 17 años los lunes y jueves! ¡El niño/a DEBE estar presente! Solo para comer en restaurante.
-Esto no se trata de política, se trata de nuestra comunidad.
Ningun niño/a debería pasar un día sin una comida.
Our community fridge is a mutual aid food support system available to anyone, no questions asked, 24/7. Our fridge is a simple way to care for one another, you can pick up what you need anytime. If you are in a position to drop off food, donations are always welcome. Check out our guidelines on our website or posted on the fridge itself. Our fridge and pantry also has monthly menstrual product kits in the nearby pod, provided thanks to Free Flow NM (@freeflownm) as well!
Here’s the reality, 17k people in the greater Santa Fe area are currently food insecure, and 1 in 5 children do not know where they are getting their next meal. A huge thanks to everyone who has contributed to this program through your donations. In addition to donating food staples and farm-grown produce regularly, we are delighted to report that over 600 meals a month are available to our community of Santa Fe, feeding those in need. Thank you for believing in our work and increasing our impact through your direct support today.
Rowley Farmhouse Ales 1405 Maclovia St, Santa Fe, NM 87505 Federal workers and anyone affected by the shutdown — lunch is on us. Rowley Farmhouse Ales is offering a free turkey sandwich to help bridge the gap. No politics here, just appreciation for our community.
Santa Fe Bite – Santa Fe 1616 St Michaels Dr, Santa Fe, NM 87505 Free meal whenever possible to unhoused neighbors. Need donations as well.
Santa Fe Farmers’ Market Institute 1607 Paseo de Peralta, Santa Fe, NM Important Update for Our Community! The Santa Fe Farmers’ Market Institute is teaming up with New Mexico Department of Health Farmers’ Market Nutrition Program to help fill the food access gap and bring fresh, locally-grown food to households in need this November. Qualified households may receive $40 in vouchers to spend at the Santa Fe Farmers’ Market. Eligibility: Federal/State food assistance recipient households, including: • Seniors 60+ • Families with school-age kids • People with disabilities Stop by the Information Booth at the Santa Fe Farmers’ Market to learn more. Market Hours: Tuesdays & Saturdays | 8 AM – 1 PM Let’s work together to keep fresh food accessible for all.
Tomasita’s – Santa Fe 500 S Guadalupe St, Santa Fe, NM 87501 Our community takes care of each other. Starting today, furloughed federal workers and their families can enjoy free meals with us — no questions asked, just show your federal ID. You’ve always supported us. Now, it’s our turn.
Fusion Tacos-Check Below for Participating Locations With recent changes to SNAP benefits, we want to do our part for the community. Fusion Tacos will be offering FREE Fusion Kids Meals — no questions asked, no purchase necessary — until SNAP benefits are restored. Just stop by any participating location, ask for a Fusion Kids Meal, and make sure the child is present — limit one meal per child . (Participating locations will be tagged in this post.) A special thank you to our sister company, Las Abuelitas Tortillería ,for donating their delicious tortillas to help us support this cause. Because every child deserves a good meal, always. Available at these participating locations. https://fusiontacosnm.com/locations/
Airport Rd.-Santa Fe
Cottonwood-ABQ
Espanola
Downtown-Santa Fe
El Dorado – Santa Fe
Green Jeans Food Hall-ABQ
Las Abuelitas Tortilleria
Las Vegas
Los Alamos-Bathtub Row Brewery
Pojoaque
Santa Fe Brewery
Santa Fe Place Mall-Santa Fe
Taos Location
Route 66 Coffee & Boba – Edgewood 3 George Ct unit a, Edgewood, NM 87015 Starting November 1st, receive a 25% discount off of a drink for each canned good or non-perishable food item you bring in.
Say Cheese – Bosque Village 1255 Bosque Farms Blvd., Bosque Farms Kids grilled cheese sandwich and a bag of chips. Kids must be present.
Shake Lab – Bosque Village 1540 Bosque Farms Blvd # A, Bosque Farms, NM 87068Tacos Pita – Roswell 1010 S. Main St., Roswell Children/seniors – 1 meal per child/senior. Must be present. 12 pm – 7 pm
jQuery(document).ready(function() {
// Show or hide the back-to-top button based on scroll position
jQuery(window).scroll(function() {
if (jQuery(this).scrollTop() > 500) {
jQuery('#backToTop').fadeIn();
} else {
jQuery('#backToTop').fadeOut();
}
});
// Smooth scroll to top when the back-to-top button is clicked
jQuery('#backToTop').click(function(event) {
event.preventDefault();
jQuery('html, body').animate({ scrollTop: 0 }, 300);
});
});
var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnX":"Share on X","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":true},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":true},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":true},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":true}},"hasCustomBreakpoints":true},"version":"4.2.4","is_static":false,"experimentalFeatures":{"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"e_panel_promotions":true,"theme_builder_v2":true,"landing-pages":true,"nested-elements":true,"e_atomic_elements":true,"atomic_widgets_should_enforce_capabilities":true,"editor_mcp":true,"e_bc_migrations":true,"e_classes":true,"global_classes_should_enforce_capabilities":true,"e_variables":true,"e_variables_manager":true,"e_opt_in_v4_page":true,"e_opt_in_v4":true,"e_components":true,"e_interactions":true,"e_widget_creation":true,"import-export-customization":true,"e_pro_atomic_form":true,"e_pro_collection_loop":true,"mega-menu":true,"e_pro_variables":true,"e_pro_interactions":true},"urls":{"assets":"https:\/\/www.santafefoodiesnm.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/www.santafefoodiesnm.com\/wp-admin\/admin-ajax.php","uploadUrl":"https:\/\/www.santafefoodiesnm.com\/wp-content\/uploads"},"nonces":{"floatingButtonsClickTracking":"c75e733270","atomicFormsSendForm":"9b0edf9603"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_mobile_extra","viewport_tablet","viewport_tablet_extra","viewport_laptop","viewport_widescreen"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description"},"post":{"id":9003241321006190,"title":"SNAP%20Solidarity%20-%20Santa%20Fe%20Foodies","excerpt":"","featuredImage":"https:\/\/www.santafefoodiesnm.com\/wp-content\/uploads\/2025\/11\/IMG_9268-Large-1024x576.jpeg"}};
//# sourceURL=elementor-frontend-js-before