{"id":8625,"date":"2026-08-20T16:39:18","date_gmt":"2026-08-20T20:39:18","guid":{"rendered":"https:\/\/tennis13.com\/?page_id=8625"},"modified":"2026-08-21T13:51:37","modified_gmt":"2026-08-21T17:51:37","slug":"faq","status":"publish","type":"page","link":"https:\/\/tennis13.com\/en\/faq\/","title":{"rendered":"FAQ"},"content":{"rendered":"\n<div class=\"wp-block-cover alignfull\" style=\"min-height:675px;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-black-background-color has-background-dim-70 has-background-dim\"><\/span><video class=\"wp-block-cover__video-background intrinsic-ignore\" autoplay muted loop playsinline src=\"https:\/\/tennis13.com\/wp-content\/uploads\/2026\/08\/videos-header-site-web.mp4\" data-object-fit=\"cover\"><\/video><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\">\n<h1 class=\"wp-block-heading alignfull has-text-align-center is-style-default has-white-color has-text-color has-link-color wp-elements-2474543e09aea50cc404da3f231f1664\">FREQUENTLY ASKED QUESTIONS<\/h1>\n<\/div><\/div>\n\n\n\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center t13-mobile-h2\">Find your answer quickly<\/h2>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"has-text-align-center t13-mobile-text\">You have a question? Search through our community&#8217;s most frequently asked questions or browse the different categories to find the information you&#8217;re looking for. <\/p>\n<\/blockquote>\n\n\n\n<div class=\"faq-search-wrapper\"><label for=\"faq-search\">Search the FAQ<\/label><div class=\"faq-search-box\"><span class=\"faq-search-icon\">\u2315<\/span><input type=\"text\" id=\"faq-search\" placeholder=\"Ex. membership, booking, pool...\" autocomplete=\"off\"\/><button type=\"button\" id=\"faq-search-clear\" aria-label=\"Effacer la recherche\">\u00d7<\/button><\/div><div id=\"faq-no-results\" style=\"display:none;\"><strong>No results found<\/strong><p>Try different keywords or\n            <a href=\"\/contact\/\">contact us<\/a>,\n            we will be happy to help!\n        <\/p><\/div><\/div><style>.faq-search-wrapper {\n    width: 100%;\n    margin-bottom: 30px;\n}\n\n.faq-search-wrapper label {\n    display: block;\n    margin-bottom: 8px;\n    font-weight: 600;\n}\n\n.faq-search-box {\n    display: flex;\n    align-items: center;\n    width: 100%;\n    background: #fff;\n    border: 1px solid #ddd;\n    border-radius: 0;\n    overflow: hidden;\n}\n\n.faq-search-icon {\n    padding-left: 18px;\n    font-size: 24px;\n}\n\n#faq-search {\n    flex: 1;\n    border: none !important;\n    outline: none !important;\n    padding: 16px;\n    font-size: 16px;\n    background: transparent;\n}\n\n#faq-search-clear {\n    border: none;\n    background: transparent;\n    font-size: 24px;\n    padding: 10px 18px;\n    cursor: pointer;\n    display: none;\n}\n\n#faq-no-results {\n    margin-top: 20px;\n    padding: 20px;\n    background: #f7f7f7;\n    text-align: center;\n}\n\n#faq-no-results strong {\n    display: block;\n    margin-bottom: 6px;\n    font-size: 18px;\n}\n\n#faq-no-results {\n    margin-top: 20px;\n    padding: 20px;\n    background: #f7f7f7;\n    text-align: center;\n    color: #000 !important;\n}\n\n#faq-no-results strong,\n#faq-no-results p,\n#faq-no-results a {\n    color: #000 !important;\n}\n\n#faq-no-results strong {\n    display: block;\n    margin-bottom: 6px;\n    font-size: 18px;\n}\n\n#faq-no-results p {\n    margin: 0;\n}\n\n\n\/* \u00c9vite les espaces caus\u00e9s par les FAQ cach\u00e9es *\/\n.faq-item[style*=\"display: none\"] {\n    display: none !important;\n}\n<\/style><script>document.addEventListener('DOMContentLoaded', function () {\n\n    const searchInput = document.getElementById('faq-search');\n    const clearButton = document.getElementById('faq-search-clear');\n    const noResults = document.getElementById('faq-no-results');\n\n    const faqItems = Array.from(\n        document.querySelectorAll('.faq-item')\n    );\n\n    const categories = Array.from(\n        document.querySelectorAll('.faq-category')\n    );\n\n    if (!searchInput || !faqItems.length) return;\n\n\n    \/* Normalise les accents :\n       r\u00e9servation = reservation\n       activit\u00e9 = activite\n    *\/\n\n    function normalizeText(text) {\n        return text\n            .toLowerCase()\n            .normalize(\"NFD\")\n            .replace(\/[\\u0300-\\u036f]\/g, \"\");\n    }\n\n\n    \/* D\u00e9termine \u00e0 quelle cat\u00e9gorie appartient chaque FAQ *\/\n\n    function getCategoryForItem(item) {\n\n        let previous = item.previousElementSibling;\n\n        while (previous) {\n\n            if (previous.classList.contains('faq-category')) {\n                return previous;\n            }\n\n            previous = previous.previousElementSibling;\n        }\n\n        return null;\n    }\n\n\n    \/* Recherche *\/\n\n    searchInput.addEventListener('input', function () {\n\n        const searchTerm = normalizeText(\n            searchInput.value.trim()\n        );\n\n        let results = 0;\n\n\n        \/* Afficher \/ cacher les questions *\/\n\n        faqItems.forEach(function (item) {\n\n            const text = normalizeText(\n                item.textContent\n            );\n\n            if (\n                searchTerm === \"\" ||\n                text.includes(searchTerm)\n            ) {\n\n                item.style.display = \"\";\n                results++;\n\n            } else {\n\n                item.style.display = \"none\";\n\n            }\n\n        });\n\n\n        \/* Si aucune recherche :\n           tout r\u00e9afficher *\/\n\n        if (searchTerm === \"\") {\n\n            categories.forEach(function (category) {\n                category.style.display = \"\";\n            });\n\n        } else {\n\n            \/* Pour chaque cat\u00e9gorie, v\u00e9rifier\n               s'il y a au moins une FAQ visible *\/\n\n            categories.forEach(function (category) {\n\n                const categoryItems = faqItems.filter(\n                    function (item) {\n\n                        return getCategoryForItem(item) === category;\n\n                    }\n                );\n\n\n                const hasVisibleResult = categoryItems.some(\n                    function (item) {\n\n                        return item.style.display !== \"none\";\n\n                    }\n                );\n\n\n                category.style.display =\n                    hasVisibleResult ? \"\" : \"none\";\n\n            });\n\n        }\n\n\n        \/* Bouton X *\/\n\n        clearButton.style.display =\n            searchTerm ? \"block\" : \"none\";\n\n\n        \/* Aucun r\u00e9sultat *\/\n\n        noResults.style.display =\n            searchTerm !== \"\" && results === 0\n                ? \"block\"\n                : \"none\";\n\n    });\n\n\n    \/* Bouton pour effacer *\/\n\n    clearButton.addEventListener('click', function () {\n\n        searchInput.value = \"\";\n\n\n        faqItems.forEach(function (item) {\n            item.style.display = \"\";\n        });\n\n\n        categories.forEach(function (category) {\n            category.style.display = \"\";\n        });\n\n\n        clearButton.style.display = \"none\";\n        noResults.style.display = \"none\";\n\n        searchInput.focus();\n\n    });\n\n});\n<\/script>\n\n\n\n<div style=\"height:18px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading is-style-highlight faq-category\">About Tennis 13 Fitness<\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>What sports are offered at Tennis 13 Fitness?<\/summary>\n<p class=\"t13-mobile-text\">Tennis, training, fitness classes, pickleball, racquetball, squash, badminton, swimming, golf, wallyball, beach volleyball, beach tennis, dek hockey.<\/p>\n\n\n\n<div style=\"height:18px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:18px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Are there any hidden fees?<\/summary>\n<p class=\"t13-mobile-text\">No, there are no hidden fees!<\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Is there a one-month membership option?<\/summary>\n<p class=\"t13-mobile-text\">No, our memberships are available for periods of 3 months &amp; +. If you\u2019d like to try Tennis 13 before committing, we also offer a one-week trial. <\/p>\n\n\n\n<div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Do you offer a family membership?<\/summary>\n<p class=\"t13-mobile-text\">No, we do not currently offer a family membership.<\/p>\n\n\n\n<div style=\"height:9px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>When are new schedules posted?<\/summary>\n<p class=\"t13-mobile-text\">There is no set schedule for when new schedules are published. We recommend checking our schedule page regularly to stay up to date with new activities and availability. <\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/tennis13.com\/en\/schedules\/\">VIEW THE SCHEDULES<\/a><\/div>\n<\/div>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading is-style-highlight faq-category\"><strong>My Membership<\/strong><\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Can I cancel my membership?<\/summary>\n<p class=\"t13-mobile-text\">Yes, memberships of 3 months &amp; + can be cancelled after the first three months. To request a cancellation, please contact our team. For annual memberships, cancellation may be considered in cases of injury, illness, or relocation, with supporting documentation. Certain fees or penalties may apply depending on the terms of your membership.    <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Can I temporarily suspend my membership?<\/summary>\n<p class=\"t13-mobile-text\">Yes, a temporary membership suspension may be possible in the event of travel or illness, with supporting documentation. Payments will continue during the suspension period, but the suspended time will be added to the end of your membership so you don\u2019t lose that time.  <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Do I have access to all sports and courts with my membership?<\/summary>\n<p class=\"t13-mobile-text\">Both members and non-members can reserve courts. However, depending on the type of membership you choose, members benefit from priority booking and preferential rates. The Le 13 membership offers these benefits for tennis, badminton, pickleball, racquetball, and squash, while the BAD \/ PICKLE membership offers them for badminton and pickleball.  <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Does my 3-month &amp; + membership automatically end after the first 3 months?<\/summary>\n<p class=\"t13-mobile-text\">No, memberships of 3 months &amp; + do not automatically end after the first three months. If you wish to cancel your membership, you must submit a cancellation request to our team after the first three months. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Does my Gym membership give me access to racquet sport courts at the member rate?<\/summary>\n<p class=\"t13-mobile-text\">Gym members can book racquet sport courts, but the non-member rate applies. Preferential court rates are reserved for memberships that include racquet sports. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Are towels included with my membership?<\/summary>\n<p class=\"t13-mobile-text\">Towels are not included with our memberships. However, a towel service is available for an additional fee. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Can I bring a guest to the gym?<\/summary>\n<p class=\"t13-mobile-text\">Yes, you can bring a guest to the gym. Guest fees apply. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Does my membership renew automatically?<\/summary>\n<p class=\"t13-mobile-text\">No, memberships do not renew automatically. You must register again once your membership expires.  <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading is-style-highlight faq-category\"><strong>Playing at Tennis 13 Fitness<\/strong><\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Can I book a court without being a member?<\/summary>\n<p class=\"t13-mobile-text\">Yes, non-members can also book a court. Different rates apply to non-members.  <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>How can I find a playing partner?<\/summary>\n<p class=\"t13-mobile-text\">Our Facebook community is a great way to find tennis, pickleball, and other racquet sport partners based on your sport and skill level.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.facebook.com\/groups\/recherchepartenairesportsderaquette?locale=fr_CA\">Find a playing partner<\/a><\/div>\n<\/div>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>How do I know what my skill level is?<\/summary>\n<p class=\"t13-mobile-text\">Tennis Qu\u00e9bec offers a self-assessment scale to help you determine your skill level based on your abilities and experience.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/tennis.qc.ca\/wp-content\/uploads\/2025\/06\/Echelle-dautoevaluation_TQ.pdf\">Assess my skill level<\/a><\/div>\n<\/div>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>I don\u2019t have a racquet, can I borrow one?<\/summary>\n<p class=\"t13-mobile-text\">Yes, a limited number of racquets are available to rent for tennis, pickleball, and racquetball\/squash. The rental fee is $5 per racquet. Balls are not included and must be purchased on site.   <br>Racquets are available at the front desk when the Pro Shop is closed. When the Pro Shop is open, racquets must be rented directly from the shop. A car key is required as a deposit when renting a racquet.  <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>If I invite non-members to play, do they get the member rate?<\/summary>\n<p class=\"t13-mobile-text\">No. Each player is charged according to their membership status, and the fees are calculated based on the number of players. <\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/tennis.qc.ca\/wp-content\/uploads\/2025\/06\/Echelle-dautoevaluation_TQ.pdf\">Assess my skill level<\/a><\/div>\n<\/div>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>How are court fees calculated when a booking includes both members and non-members?<\/summary>\n<p class=\"t13-mobile-text\">The court fee is first divided among the number of players on the court. Each player then pays their share at the rate corresponding to their membership status. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>How are court rental fees calculated?<\/summary>\n<p class=\"t13-mobile-text\">Court rental fees are charged per court, per hour. The cost can then be split among the players, whether there are 2 or 4 players on the court. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>How far in advance can non-members book a court?<\/summary>\n<p class=\"t13-mobile-text\">Non-members can book a court up to 48 hours in advance. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading is-style-highlight faq-category\"><strong>Classes &amp; Training<\/strong><\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Do I need to book a spot for group fitness classes?<\/summary>\n<p class=\"t13-mobile-text\">No, reservations are not required. Spots are available on a first-come, first-served basis. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>How old does my child have to be to access the gym?<\/summary>\n<p class=\"t13-mobile-text\">Gym access is available to members aged 16 and over. However, specially designed training programs for younger participants are available, including Youth Fitness and the Strong Girl Club. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>What age can my child start tennis lessons?<\/summary>\n<p class=\"t13-mobile-text\">Children can start tennis lessons as young as 4 years old.<\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Do you offer coaching for badminton, squash, and racquetball?<\/summary>\n<p class=\"t13-mobile-text\">No, we do not currently offer coaching services for badminton, squash, or racquetball.<\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>How do adult tennis lessons work?<\/summary>\n<p class=\"t13-mobile-text\">Our adult tennis lessons are designed for different skill levels, ranging from beginner to intermediate. Sessions typically run for 5 to 9 weeks and focus on technique, footwork, strategy, and the various skills needed to improve your game. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>How do children\u2019s tennis lessons work?<\/summary>\n<p class=\"t13-mobile-text\">Children\u2019s tennis lessons are offered by session throughout the year, with 13 lessons per session. Children are first grouped by age, and their skill level may then be reassessed on the court to ensure they are placed in the group that best suits them. <\/p>\n\n\n\n<p class=\"t13-mobile-text\">Groups typically consist of about 6 children per class, and lessons are offered on weekends.<\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Can I bring my own private coach?<\/summary>\n<p class=\"t13-mobile-text\">No, external private coaches are not permitted to provide lessons or training sessions at Tennis 13. <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading is-style-highlight faq-category\"><strong>Facilities &amp; Services<\/strong><\/h3>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Is the pool accessible to all members?<\/summary>\n<p class=\"t13-mobile-text\">Yes, the pool is available to all members during public swim hours. Pool hours may vary, so we recommend checking the pool schedule before your visit.  <\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<details class=\"wp-block-details faq-item t13-mobile-text is-layout-flow wp-block-details-is-layout-flow\"><summary>Is the restaurant \/ bistro open to everyone?<\/summary>\n<p class=\"t13-mobile-text\">Yes, the restaurant is open to the public, whether you\u2019re a Tennis 13 member or not.<\/p>\n\n\n\n<div style=\"height:14px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/details>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer faq-category\"><\/div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-5 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-default\"><a class=\"wp-block-button__link wp-element-button\" href=\"tel:450-687-9913\">CONTACT US<\/a><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Find your answer quickly You have a question? Search through our community&#8217;s most frequently asked questions or browse the different categories to find the information you&#8217;re looking for. Search the FAQ \u2315\u00d7 No results found Try different keywords or contact us, we will be happy to help! About Tennis 13 Fitness My Membership Playing at\u2026<\/p>\n","protected":false},"author":7,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"open","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-8625","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>FAQ | Tennis 13 Fitness<\/title>\n<meta name=\"description\" content=\"Check out our FAQ to quickly find answers to your questions about Tennis 13 Fitness: memberships, facilities, and services.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tennis13.com\/en\/faq\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FAQ | Tennis 13 Fitness\" \/>\n<meta property=\"og:description\" content=\"Check out our FAQ to quickly find answers to your questions about Tennis 13 Fitness: memberships, facilities, and services.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tennis13.com\/en\/faq\/\" \/>\n<meta property=\"og:site_name\" content=\"Tennis 13\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-21T17:51:37+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tennis13.com\/en\/faq\/\",\"url\":\"https:\/\/tennis13.com\/en\/faq\/\",\"name\":\"FAQ | Tennis 13 Fitness\",\"isPartOf\":{\"@id\":\"https:\/\/tennis13.com\/#website\"},\"datePublished\":\"2026-08-20T20:39:18+00:00\",\"dateModified\":\"2026-08-21T17:51:37+00:00\",\"description\":\"Check out our FAQ to quickly find answers to your questions about Tennis 13 Fitness: memberships, facilities, and services.\",\"breadcrumb\":{\"@id\":\"https:\/\/tennis13.com\/en\/faq\/#breadcrumb\"},\"inLanguage\":\"en-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tennis13.com\/en\/faq\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tennis13.com\/en\/faq\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tennis13.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FAQ\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tennis13.com\/#website\",\"url\":\"https:\/\/tennis13.com\/\",\"name\":\"Tennis 13\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tennis13.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-CA\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FAQ | Tennis 13 Fitness","description":"Check out our FAQ to quickly find answers to your questions about Tennis 13 Fitness: memberships, facilities, and services.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tennis13.com\/en\/faq\/","og_locale":"en_US","og_type":"article","og_title":"FAQ | Tennis 13 Fitness","og_description":"Check out our FAQ to quickly find answers to your questions about Tennis 13 Fitness: memberships, facilities, and services.","og_url":"https:\/\/tennis13.com\/en\/faq\/","og_site_name":"Tennis 13","article_modified_time":"2026-08-21T17:51:37+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tennis13.com\/en\/faq\/","url":"https:\/\/tennis13.com\/en\/faq\/","name":"FAQ | Tennis 13 Fitness","isPartOf":{"@id":"https:\/\/tennis13.com\/#website"},"datePublished":"2026-08-20T20:39:18+00:00","dateModified":"2026-08-21T17:51:37+00:00","description":"Check out our FAQ to quickly find answers to your questions about Tennis 13 Fitness: memberships, facilities, and services.","breadcrumb":{"@id":"https:\/\/tennis13.com\/en\/faq\/#breadcrumb"},"inLanguage":"en-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tennis13.com\/en\/faq\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tennis13.com\/en\/faq\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tennis13.com\/en\/"},{"@type":"ListItem","position":2,"name":"FAQ"}]},{"@type":"WebSite","@id":"https:\/\/tennis13.com\/#website","url":"https:\/\/tennis13.com\/","name":"Tennis 13","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tennis13.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-CA"}]}},"_links":{"self":[{"href":"https:\/\/tennis13.com\/en\/wp-json\/wp\/v2\/pages\/8625"}],"collection":[{"href":"https:\/\/tennis13.com\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tennis13.com\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tennis13.com\/en\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/tennis13.com\/en\/wp-json\/wp\/v2\/comments?post=8625"}],"version-history":[{"count":15,"href":"https:\/\/tennis13.com\/en\/wp-json\/wp\/v2\/pages\/8625\/revisions"}],"predecessor-version":[{"id":8663,"href":"https:\/\/tennis13.com\/en\/wp-json\/wp\/v2\/pages\/8625\/revisions\/8663"}],"wp:attachment":[{"href":"https:\/\/tennis13.com\/en\/wp-json\/wp\/v2\/media?parent=8625"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}