Additional Booth Fee (for General Area ONLY)

Additional Booth Fee (for General Area ONLY)

$325.00

The 2025 Residency Fair Additional Booths fee (for General Area ONLY) includes:

  • One extra booth set up with 2-3 chairs

  • The extra booth can ONLY be set up within the GENERAL AREA of the venue.

  • This additional booth is not applicable to the Outer Perimeter or Entrance Areas of the venue.

Please email howardmed.residencyfair@gmail.com if you are having any issues with payments. We can send an invoice or otherwise try to accommodate your special purchase requirements!

Quantity:
Add To Cart
// Wait for the document to fully load document.addEventListener('DOMContentLoaded', function() { // Get all product options const productOptions = document.querySelectorAll('.product-option-select'); // Function to remove an option by value function removeOption(selectElement, optionValue) { for (let i = 0; i < selectElement.options.length; i++) { if (selectElement.options[i].value === optionValue) { selectElement.remove(i); break; } } } // Check if the order was successful if (typeof window.Squarespace === 'object' && window.Squarespace.onOrderComplete) { window.Squarespace.onOrderComplete(function(order) { // Loop through purchased items order.lineItems.forEach(function(item) { // Find the corresponding product option element const optionElement = document.querySelector(`.product-option-select[data-item-id="${item.id}"]`); if (optionElement) { // Remove the purchased option removeOption(optionElement, item.variantId); } }); }); } });