Furniture - La-Z-Boy Sofas, Chairs, Recliners and Couches - Find a Furniture Store - Official La-Z-Boy Website (2024)

Skip to main content

Find Store

close menuYour StoreSetting your store ensures accurate pricing, delivery estimates, and store hours.

Store Locator

close menu

Hello

Log in or sign up to access and manage your La-Z-Boy profile and order details

Log In/Sign Up

Find Store

Order Status

View & track your orders

Need Design Help? You Got It!

Furniture - La-Z-Boy Sofas, Chairs, Recliners and Couches - Find a Furniture Store - Official La-Z-Boy Website (38)

Did you know your local store offers FREE Design Services? Simply start with a consultation and let us help you create the room of your dreams.

SET APPOINTMENT

Top Searches

  • Recliners
  • Stationary Sofas
  • FREE Design Services

close menu

We're standing up for your right to sit down. Shopcomfyfaves

`; const modalForm = modal.querySelector('#contactForm'); const modalClose = modal.querySelector('#close-button'); const modalFirstInput = modal.querySelector('input'); modalLink.addEventListener('click', (e) => { e.preventDefault(); modal.showModal(); modalFirstInput.focus(); }); modal.onclick = () => modal.close(); modalClose.onclick = () => modal.close(); modalForm.addEventListener('submit', async (e) => { e.preventDefault(); await submitFormData(modalForm); // Utilize the function for form submission }); storePage.htmlGenerator.storeContent.after(modal); async function submitFormData(form) { const urlSearchParams = new URLSearchParams(new FormData(form)); try { const response = await fetch(`${storePage.apiBaseUrl}/eloqua/contactus/${storePage.storeId}`, { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, body: urlSearchParams.toString() }); const result = await response.json(); // Assuming the endpoint returns JSON handleFormResponse(result); } catch (error) { console.error('Error submitting form:', error); handleFormResponse({ success: false, error: "Network error. Please try again later." }); } } function handleFormResponse(data) { const feedbackMessage = document.getElementById('feedbackMessage'); if (data.success) { feedbackMessage.textContent = data.message || 'Thank you for contacting us. Your message has been sent.'; feedbackMessage.style.color = 'green'; } else { feedbackMessage.textContent = data.error || 'Your message could not be sent. Please try again later.'; feedbackMessage.style.color = 'red'; } feedbackMessage.style.display = 'block'; feedbackMessage.setAttribute('aria-live', 'assertive'); setTimeout(() => { feedbackMessage.style.display = 'none'; if (data && data.success) { modal.close(); modalLink.focus(); modalForm.reset(); } }, 5000); } } } // Helper function to create the store map module function makeMapModule() { const { latitude: lat, longitude: long } = coordinates; const module = document.createElement('a'); module.className = 'module box background-image'; module.id = 'store-map'; module.href = gmapsUrl; // Access gmapsUrl from makeContentElement's scope module.target = '_blank'; // Ensure latitude and longitude are valid if (!lat || !long) { console.error('Map initialization failed due to missing coordinates.'); return module; } // Function to build the URL for the Google Maps image const buildMapUrl = () => { const { offsetWidth: width, offsetHeight: height } = module; const parameters = new URLSearchParams({ center: `${lat},${long}`, zoom: "15", size: `${width}x${height}`, scale: (window.devicePixelRatio || 1).toString(), markers: `color:0x0070AF|${lat},${long}`, key: "AIzaSyDakgXS7106HPBzlvG1ydCUBjnbjY3kjwo", }).toString(); return `https://maps.googleapis.com/maps/api/staticmap?${parameters}`; }; const debounce = (func, wait) => { let timeout; return (...args) => { clearTimeout(timeout); timeout = setTimeout(() => func(...args), wait); }; }; const updateMapBackground = debounce(() => { module.style.backgroundImage = `url('${buildMapUrl()}')`; }, 250); const resizeObserver = new ResizeObserver(entries => { for (let entry of entries) { if (entry.target === module && module.offsetWidth > 0 && module.offsetHeight > 0) { updateMapBackground(); } } }); resizeObserver.observe(module); return module; } // Helper function to create the store selector module function makeSelectorModule() { const isMyStore = storeId === preferredStoreSet; // Create the main module element const module = document.createElement('div'); module.className = 'module box'; module.id = 'store-selector'; module.innerHTML = /*html*/ `

${isMyStore ? "Your Store" : "Shop this store"}

${isMyStore ? "Store assignment sets product assortment and pricing. Delivery is limited to addresses within 50 mile radius of this location. If this store is outside your region, please search by location (below)." : "Set now to view store product assortment and pricing. Delivery available within 50 mile radius of store location."}

${isMyStore ? `Search All Stores` : `Set as my store` }`; return module; } // Helper function to create the store map module function makeImageModule() { const storeImage = "https://content.la-z-boy.com/img/npc/store-dark.png?width=676&dpr=2&quality=50"; const module = document.createElement('div'); module.className = 'module box background-image'; module.id = 'store-image'; module.style.backgroundImage = `url('${storeImage}')`; return module; } // Helper function to create the design services module function makeDesignModule() { const designServicesImage = "https://content.la-z-boy.com/img/npc/fds-logo.png"; const module = document.createElement('div'); module.className = 'module box image-copy'; module.id = 'store-design'; module.innerHTML = /*html*/ ` Furniture - La-Z-Boy Sofas, Chairs, Recliners and Couches - Find a Furniture Store - Official La-Z-Boy Website (39)

Free Design Services

A ${name} design professional can help make your dreams a reality.

Schedule appointment

`; return module; } // Helper function to create the in-store promo module function makePromoModule() { const module = document.createElement('div'); module.className = 'module box'; module.id = 'store-promo'; module.innerHTML = /*html*/ `

In-store Promotions

Check out all the ways to save in your local Furniture Galleries location.

Download now`; return module; } // Helper function to create the store hours module function makeHoursModule() { const module = document.createElement('div'); module.className = 'module box'; module.id = 'store-hours'; module.innerHTML = /*html*/ `

Store Hours

    ${generateStoreHoursListItems()}

`; return module; function generateStoreHoursListItems() { return Array.from({ length: 7 }).map((_, i) => { const futureDate = new Date(today.getFullYear(), today.getMonth(), today.getDate() + i); const dayOfWeek = storePage.daysOfWeek[futureDate.getDay()]; const hoursText = storePage.getHoursForDate(futureDate); return `

  • ${dayOfWeek} ${hoursText || "Closed"}
  • `; }).join("\n"); } } }, }, getHoursForDate(date) { const dateString = date.toISOString().split("T")[0]; // YYYY-MM-DD format const holiday = this.storeData.hours?.holidayHours?.find(h => h.date === dateString); const dayOfWeek = this.daysOfWeek[date.getDay()].toLowerCase(); if (holiday) { if (holiday.isClosed) { return null; } else if (holiday.openIntervals && holiday.openIntervals.length > 0) { const { start, end } = holiday.openIntervals[0]; return `${formatTime(start)} - ${formatTime(end)}`; } } else { const regularHours = storePage.storeData.hours?.[dayOfWeek]?.openIntervals[0]; if (regularHours) { return `${formatTime(regularHours.start)} - ${formatTime(regularHours.end)}`; } } return null; function formatTime(time24) { const [hour, minute] = time24.split(":"); const hourInt = parseInt(hour, 10); const ampm = hourInt >= 12 ? "pm" : "am"; const hour12 = hourInt % 12 || 12; // Converts "00" to 12 for 12am return `${hour12}${minute === "00" ? "" : ":" + minute}${ampm}`; } }, handleError(context, error) { console.error(`${context}:`, error); // Additional error handling logic, e.g., alerting the user. }, } storePage.init(); // Start the initialization process

    Furniture - La-Z-Boy Sofas, Chairs, Recliners and Couches - Find a Furniture Store - Official La-Z-Boy Website (2024)

    References

    Top Articles
    2024-2025 Men's Basketball Roster
    The US men’s basketball team is stacked and looking for a fifth straight gold medal. See the Olympic roster. - The Boston Globe
    Top 11 Best Bloxburg House Ideas in Roblox - NeuralGamer
    Danielle Moodie-Mills Net Worth
    Craigslist Mpls Mn Apartments
    Jesus Calling December 1 2022
    Mustangps.instructure
    J Prince Steps Over Takeoff
    Oppenheimer & Co. Inc. Buys Shares of 798,472 AST SpaceMobile, Inc. (NASDAQ:ASTS)
    Walgreens On Nacogdoches And O'connor
    Overton Funeral Home Waterloo Iowa
    Dit is hoe de 130 nieuwe dubbele -deckers -treinen voor het land eruit zien
    Truth Of God Schedule 2023
    Craftology East Peoria Il
    Voy Boards Miss America
    Daylight Matt And Kim Lyrics
    10 Fun Things to Do in Elk Grove, CA | Explore Elk Grove
    Satisfactory: How to Make Efficient Factories (Tips, Tricks, & Strategies)
    Maxpreps Field Hockey
    Theater X Orange Heights Florida
    Encore Atlanta Cheer Competition
    How many days until 12 December - Calendarr
    Dcf Training Number
    If you have a Keurig, then try these hot cocoa options
    Nsa Panama City Mwr
    Anotherdeadfairy
    Fleet Farm Brainerd Mn Hours
    Why Are Fuel Leaks A Problem Aceable
    Scripchat Gratis
    Acurafinancialservices Com Home Page
    Blackboard Login Pjc
    Cona Physical Therapy
    Ardie From Something Was Wrong Podcast
    Tactical Masters Price Guide
    Joann Fabrics Lexington Sc
    Elanco Rebates.com 2022
    Pfcu Chestnut Street
    Boggle BrainBusters: Find 7 States | BOOMER Magazine
    Bitchinbubba Face
    Blasphemous Painting Puzzle
    Final Jeopardy July 25 2023
    Restored Republic June 6 2023
    Ucsc Sip 2023 College Confidential
    Gopher Hockey Forum
    Petfinder Quiz
    Zom 100 Mbti
    San Diego Padres Box Scores
    Tyrone Unblocked Games Bitlife
    Noelleleyva Leaks
    Myhrkohls.con
    E. 81 St. Deli Menu
    7 National Titles Forum
    Latest Posts
    Article information

    Author: Jerrold Considine

    Last Updated:

    Views: 6418

    Rating: 4.8 / 5 (58 voted)

    Reviews: 89% of readers found this page helpful

    Author information

    Name: Jerrold Considine

    Birthday: 1993-11-03

    Address: Suite 447 3463 Marybelle Circles, New Marlin, AL 20765

    Phone: +5816749283868

    Job: Sales Executive

    Hobby: Air sports, Sand art, Electronics, LARPing, Baseball, Book restoration, Puzzles

    Introduction: My name is Jerrold Considine, I am a combative, cheerful, encouraging, happy, enthusiastic, funny, kind person who loves writing and wants to share my knowledge and understanding with you.