{"id":9817,"date":"2023-06-20T14:24:37","date_gmt":"2023-06-20T14:24:37","guid":{"rendered":"https:\/\/www.makemydayapp.com\/?page_id=9817"},"modified":"2024-01-07T22:02:48","modified_gmt":"2024-01-07T22:02:48","slug":"events-scheduler","status":"publish","type":"page","link":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/","title":{"rendered":"Planificateur d'\u00e9v\u00e9nements"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"9817\" class=\"elementor elementor-9817\" data-elementor-post-type=\"page\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-5f3504d7 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5f3504d7\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-6d5de7d1\" data-id=\"6d5de7d1\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-a25ab9c elementor-widget elementor-widget-heading\" data-id=\"a25ab9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h5 class=\"elementor-heading-title elementor-size-default\"><span style=\"font-size: 20px;font-weight: 400\"> Welcome to Make My Day's Events Scheduler for the Automotive &amp; EV industry! \nSimplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free.<\/span><\/h5>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-603fbfa elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"603fbfa\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-3581bd7 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"3581bd7\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-44a45d5\" data-id=\"44a45d5\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-265b07b elementor-widget-mobile__width-initial c-text-container elementor-widget elementor-widget-html\" data-id=\"265b07b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div id=\"event-list\"><\/div>\n\n<script src=\"https:\/\/cdn.jsdelivr.net\/npm\/ical.js@1.4.0\/build\/ical.js\"><\/script>\n<script>\n    let calendarUrl = '\/ical_proxy.php'; \/\/ Get calendar URL\n\n    \/\/ Get the .ics file\n    fetch(calendarUrl)\n          .then((response) => {\n            if (!response.ok) {\n              throw new Error('Error getting the file iCalendar.');\n            }\n            return response.json();\n          })\n        .then((data) => {\n            const jcalData = ICAL.parse(data.ics_data);\n            const comp = new ICAL.Component(jcalData);\n            let events = comp.getAllSubcomponents('vevent');\n\n            \/\/ Filter and process events for the next 3 months\n            const currentDate = new Date();\n            const threeMonthsLater = new Date(currentDate);\n            threeMonthsLater.setMonth(threeMonthsLater.getMonth() + 3);\n\n            events = events.filter((event) => {\n                const startDate = new Date(event.getFirstPropertyValue('dtstart'));\n                return startDate >= currentDate && startDate <= threeMonthsLater;\n            });\n\n            \/\/ Show the events\n            sortEventsByStartDate(events);\n            const eventsByMonth = groupEventsByMonth(events)\n            renderEventList(eventsByMonth);\n        })\n        .catch(function (error) {\n            console.error('Error getting iCalendar file:', error);\n        });\n\n        function renderEventList(eventsByMonth) {\n            let html = '';\n\n            \/\/ Generate HTML per month\n            for (const monthYear in eventsByMonth) {\n                html             += '<h2>' + monthYear + '<\/h2>';\n                const monthEvents = eventsByMonth[monthYear];\n\n                monthEvents.forEach(event => {\n                    const { summary, description, location, startDate } = event;\n                    const startDateFormatted                            = event.startDate.toLocaleString('en', { day: 'numeric', weekday: 'long' });\n                    let timeRange                                       = startDateFormatted;\n\n                    if (event.startDate.getHours() != 0 && event.startDate.getMinutes() != 0 && event.startDate.getSeconds() != 0) {\n                        const startTime = event.startDate.toLocaleString('en', { hour: 'numeric', minute: 'numeric' });\n                        timeRange       = `${startDateFormatted} ${startTime}`;\n                    }\n\n                    html += `<ul style=\"margin-bottom: 10px;\">\n                                <li><strong> ${timeRange} <\/strong>: ${summary}<br>`;\n\n                    if (description !== '') {\n                        html += `<div class=\"c-calendar-content-text\">Description: ${description}<\/div>`;\n                    }\n\n                    if (location !== '') {\n                        html += `<div class=\"c-calendar-content-text\">Location: ${location}<\/div>`;\n                    }\n\n                    html += '<\/li><\/ul>';\n                });\n            html += '<br>';\n            }\n            document.getElementById('event-list').innerHTML = html;\n\n            const accessLink        = document.createElement('button');\n            accessLink.textContent  = 'Request access to the calendar';\n            accessLink.classList.add('c-access-link');\n            accessLink.title        = \"Open calendar to request access\"\n            document.getElementById('event-list').appendChild(accessLink);\n            \n            accessLink.addEventListener('click', function() {\n                window.open('https:\/\/calendar.google.com\/calendar\/u\/0?cid=aWxrcGg5aTBmOWxpMDBzMXFkOWFvbW9mNWtAZ3JvdXAuY2FsZW5kYXIuZ29vZ2xlLmNvbQ', '_blank');\n            });\n        }\n\n        \/\/ Group events by month and returning in a variable\n        function groupEventsByMonth(events) {\n            const eventsByMonth = {};\n            events.forEach(event => {\n                const startDateObject = event.getFirstPropertyValue('dtstart')._time;\n                const year            = startDateObject.year;\n                const month           = startDateObject.month-1 \/\/ Subtract 1 since months in JavaScript start from 0\n                const startDate       = new Date(year, month, startDateObject.day);\n\n                \/\/ Get the name of the month and the year in \"month year\" format (example: \"april 2022\")\n                const monthYear = startDate.toLocaleString('default', { month: 'long', year: 'numeric' });\n\n                if (!eventsByMonth[monthYear])\n                eventsByMonth[monthYear] = [];\n\n                eventsByMonth[monthYear].push({\n                startDate: startDate,\n                summary: event.getFirstPropertyValue('summary') || '',\n                description: event.getFirstPropertyValue('description') || '',\n                location: event.getFirstPropertyValue('location') || ''\n                });\n            });\n            return eventsByMonth;\n        }\n\n        \/\/ Sort events by start date\n        function sortEventsByStartDate(events) {\n            events.sort((event1, event2) => {\n                return new Date(event1.getFirstPropertyValue('dtstart')) - new Date(event2.getFirstPropertyValue('dtstart'));\n            });\n        }\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd1c9e7 elementor-widget elementor-widget-spacer\" data-id=\"cd1c9e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-76d487d elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"76d487d\" data-element_type=\"section\" data-e-type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-0e50744\" data-id=\"0e50744\" data-element_type=\"column\" data-e-type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-22675d1 elementor-widget elementor-widget-html\" data-id=\"22675d1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<script>\n    const mainContent = document.getElementById('content');\n\n    if (mainContent)\n        mainContent.style.paddingTop = '90px';\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Welcome to Make My Day&#8217;s Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry&#8217;s leading events and conferences, all in one place, to make your experience seamless and hassle-free.<\/p>","protected":false},"author":6,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"content-type":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-9817","page","type-page","status-publish","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"Welcome to Make My Day&#039;s Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry&#039;s leading events and conferences, all in one place, to make your experience seamless and hassle-free. Welcome to Make My Day&#039;s Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry&#039;s leading events and conferences, all in one place, to make your experience seamless and hassle-free.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"google-site-verification\" content=\"EVQgOZGznYY-LntoqKdjujkMfvkZvJXbaaiY36TLY-Y\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"fr_FR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Make My Day \u2013 WordPress site\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Events Scheduler \u2013 Make My Day\" \/>\n\t\t<meta property=\"og:description\" content=\"Welcome to Make My Day&#039;s Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry&#039;s leading events and conferences, all in one place, to make your experience seamless and hassle-free. Welcome to Make My Day&#039;s Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry&#039;s leading events and conferences, all in one place, to make your experience seamless and hassle-free.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.makemydayapp.com\/wp-content\/uploads\/2022\/12\/about-02-2.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.makemydayapp.com\/wp-content\/uploads\/2022\/12\/about-02-2.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"420\" \/>\n\t\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-06-20T14:24:37+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-01-07T22:02:48+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/MakeMyDayApp\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@Make_My_Day_App\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Events Scheduler \u2013 Make My Day\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Welcome to Make My Day&#039;s Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry&#039;s leading events and conferences, all in one place, to make your experience seamless and hassle-free. Welcome to Make My Day&#039;s Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry&#039;s leading events and conferences, all in one place, to make your experience seamless and hassle-free.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@Make_My_Day_App\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.makemydayapp.com\/wp-content\/uploads\/2022\/12\/about-02-2.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/events-scheduler\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/events-scheduler\\\/#listItem\",\"name\":\"Events Scheduler\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/events-scheduler\\\/#listItem\",\"position\":2,\"name\":\"Events Scheduler\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr#listItem\",\"name\":\"Home\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/#organization\",\"name\":\"Make My Day\",\"description\":\"WordPress site\",\"url\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/\",\"telephone\":\"+972547745401\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.makemydayapp.com\\\/wp-content\\\/uploads\\\/2022\\\/11\\\/mmd-icon.svg\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/events-scheduler\\\/#organizationLogo\",\"width\":166,\"height\":166},\"image\":{\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/events-scheduler\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/MakeMyDayApp\",\"https:\\\/\\\/twitter.com\\\/Make_My_Day_App\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/make-my-day-app\\\/\"]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/events-scheduler\\\/#webpage\",\"url\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/events-scheduler\\\/\",\"name\":\"Events Scheduler \\u2013 Make My Day\",\"description\":\"Welcome to Make My Day's Events Scheduler for the Automotive & EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free. Welcome to Make My Day's Events Scheduler for the Automotive & EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free.\",\"inLanguage\":\"fr-FR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/events-scheduler\\\/#breadcrumblist\"},\"datePublished\":\"2023-06-20T14:24:37+00:00\",\"dateModified\":\"2024-01-07T22:02:48+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/\",\"name\":\"Make My Day\",\"description\":\"WordPress site\",\"inLanguage\":\"fr-FR\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.makemydayapp.com\\\/fr\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Events Scheduler \u2013 Make My Day","description":"Welcome to Make My Day's Events Scheduler for the Automotive & EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free. Welcome to Make My Day's Events Scheduler for the Automotive & EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free.","canonical_url":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"EVQgOZGznYY-LntoqKdjujkMfvkZvJXbaaiY36TLY-Y","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.makemydayapp.com\/fr#listItem","position":1,"name":"Home","item":"https:\/\/www.makemydayapp.com\/fr","nextItem":{"@type":"ListItem","@id":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/#listItem","name":"Events Scheduler"}},{"@type":"ListItem","@id":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/#listItem","position":2,"name":"Events Scheduler","previousItem":{"@type":"ListItem","@id":"https:\/\/www.makemydayapp.com\/fr#listItem","name":"Home"}}]},{"@type":"Organization","@id":"https:\/\/www.makemydayapp.com\/fr\/#organization","name":"Make My Day","description":"WordPress site","url":"https:\/\/www.makemydayapp.com\/fr\/","telephone":"+972547745401","logo":{"@type":"ImageObject","url":"https:\/\/www.makemydayapp.com\/wp-content\/uploads\/2022\/11\/mmd-icon.svg","@id":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/#organizationLogo","width":166,"height":166},"image":{"@id":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/#organizationLogo"},"sameAs":["https:\/\/www.facebook.com\/MakeMyDayApp","https:\/\/twitter.com\/Make_My_Day_App","https:\/\/www.linkedin.com\/company\/make-my-day-app\/"]},{"@type":"WebPage","@id":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/#webpage","url":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/","name":"Events Scheduler \u2013 Make My Day","description":"Welcome to Make My Day's Events Scheduler for the Automotive & EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free. Welcome to Make My Day's Events Scheduler for the Automotive & EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free.","inLanguage":"fr-FR","isPartOf":{"@id":"https:\/\/www.makemydayapp.com\/fr\/#website"},"breadcrumb":{"@id":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/#breadcrumblist"},"datePublished":"2023-06-20T14:24:37+00:00","dateModified":"2024-01-07T22:02:48+00:00"},{"@type":"WebSite","@id":"https:\/\/www.makemydayapp.com\/fr\/#website","url":"https:\/\/www.makemydayapp.com\/fr\/","name":"Make My Day","description":"WordPress site","inLanguage":"fr-FR","publisher":{"@id":"https:\/\/www.makemydayapp.com\/fr\/#organization"}}]},"og:locale":"fr_FR","og:site_name":"Make My Day \u2013 WordPress site","og:type":"article","og:title":"Events Scheduler \u2013 Make My Day","og:description":"Welcome to Make My Day's Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free. Welcome to Make My Day's Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free.","og:url":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/","og:image":"https:\/\/www.makemydayapp.com\/wp-content\/uploads\/2022\/12\/about-02-2.jpg","og:image:secure_url":"https:\/\/www.makemydayapp.com\/wp-content\/uploads\/2022\/12\/about-02-2.jpg","og:image:width":420,"og:image:height":300,"article:published_time":"2023-06-20T14:24:37+00:00","article:modified_time":"2024-01-07T22:02:48+00:00","article:publisher":"https:\/\/www.facebook.com\/MakeMyDayApp","twitter:card":"summary_large_image","twitter:site":"@Make_My_Day_App","twitter:title":"Events Scheduler \u2013 Make My Day","twitter:description":"Welcome to Make My Day's Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free. Welcome to Make My Day's Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free.","twitter:creator":"@Make_My_Day_App","twitter:image":"https:\/\/www.makemydayapp.com\/wp-content\/uploads\/2022\/12\/about-02-2.jpg"},"aioseo_meta_data":{"post_id":"9817","title":null,"description":"#post_content Welcome to Make My Day's Events Scheduler for the Automotive &amp; EV industry! Simplify your event planning and organization with our powerful scheduling tool. We have curated a comprehensive collection of the industry's leading events and conferences, all in one place, to make your experience seamless and hassle-free.","keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-06-20 14:24:37","updated":"2025-06-03 23:00:34","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.makemydayapp.com\/fr\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tEvents Scheduler\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.makemydayapp.com\/fr"},{"label":"Events Scheduler","link":"https:\/\/www.makemydayapp.com\/fr\/events-scheduler\/"}],"_links":{"self":[{"href":"https:\/\/www.makemydayapp.com\/fr\/wp-json\/wp\/v2\/pages\/9817","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.makemydayapp.com\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.makemydayapp.com\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.makemydayapp.com\/fr\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.makemydayapp.com\/fr\/wp-json\/wp\/v2\/comments?post=9817"}],"version-history":[{"count":10,"href":"https:\/\/www.makemydayapp.com\/fr\/wp-json\/wp\/v2\/pages\/9817\/revisions"}],"predecessor-version":[{"id":11865,"href":"https:\/\/www.makemydayapp.com\/fr\/wp-json\/wp\/v2\/pages\/9817\/revisions\/11865"}],"wp:attachment":[{"href":"https:\/\/www.makemydayapp.com\/fr\/wp-json\/wp\/v2\/media?parent=9817"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}