Looking at `image_26bcba.jpg` and `image_26bc62.png`, you have caught a major structural bug and an equally important UX limitation.

### 1. The Troubleshooting Diagnosis (Why it reads Jan 1, 1970)

In `image_26bcba.jpg`, the browser's native HTML5 `<input type="datetime-local">` picker formats the dates as strings like `2026-06-12T16:40`. However, when saved, your server receives that string and doesn't explicitly parse it before writing it to the database post-meta.

When the frontend grid loads in `image_26bc62.png`, the rendering engine runs `strtotime()` on a raw unparsed string. Because the string value format doesn't match what the function expects, it breaks down and reverts to the standard Unix epoch baseline: **January 1, 1970**.

### 2. The Expert UX & Flow Critique

From an enterprise UX standpoint, a single date picker fails because **it only defines a starting point, not a duration or an end point.**

If a Mentor selects `06/12/2026 04:40 PM`, the Mentee has no idea if they are booking a quick 15-minute introductory check-in, a 30-minute strategic conversation, or a full 1-hour coaching block. This introduces massive friction:

* **Mentor Anxiety:** Mentors won't publish slots if they are worried a session will blindly bleed past their next commitment.
* **Mentee Hesitation:** Mentees don't know how much content or how many questions to prepare because they don't know their time budget.

### 3. The Best-Practice Blueprint Solution

To match the premium feel of tools like Mentorship Rocket or Calendly, we need to completely redefine the database structure and the frontend interface to handle a clean **Time Slot + Duration Flow**.

Instead of making users manually type durations, the best practice is to pair a **Start Date & Time picker** with a crisp, brand-aligned **Duration Dropdown Menu** (e.g., 30 Minutes, 45 Minutes, 1 Hour).

---

### Rebuilding the Engine: Plugin Version 1.5.0

I have completely refactored the entire code file below to solve the Unix epoch date bug and implement the advanced time slot architecture.

#### What this new code does:

* **Fixes the 1970 Bug:** Properly handles the date formatting strings so they save and display flawlessly.
* **Introduces Duration Architectures:** Adds an explicit structural dropdown for every individual slot on the backend registration panel.
* **Polishes the Frontend UX:** The public gallery cards now render calculated end-times and clean duration badges (e.g., `Jun 12, 2026 @ 4:40 PM - 5:40 PM (60 Mins)`), removing all guesswork for the mentee.

You can follow the exact dashboard update steps you used previously to deploy this updated file!

### File: `law-society-mentorship-poc.php`

```php
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Law Society of Saskatchewan - ECPv6.16.2//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-ORIGINAL-URL:https://devsite.lawsociety.sk.ca
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Regina
BEGIN:STANDARD
TZOFFSETFROM:-0600
TZOFFSETTO:-0600
TZNAME:CST
DTSTART:20250101T000000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Regina:20260513T120000
DTEND;TZID=America/Regina:20260513T130000
DTSTAMP:20260613T000142
CREATED:20260403T202203Z
LAST-MODIFIED:20260403T202203Z
UID:10000299-1778673600-1778677200@devsite.lawsociety.sk.ca
SUMMARY:Free Webinar - From Law School Debt to Financial Confidence (CPD 453.1)
DESCRIPTION:Qualifies for 1.0 CPD Hour. \nMany lawyers begin their careers carrying significant student debt and\, as their income grows\, find themselves uncertain about how to manage\, protect\, and plan with that money—often while navigating very different employment and practice structures. This financial wellness session is designed to support lawyers at any stage of their career who want greater clarity and confidence in their financial decisions\, regardless of how their work is structured. \nThis practical session will explore common financial pressures in the profession\, including debt repayment\, lifestyle inflation\, competing priorities\, and long-term planning\, while acknowledging that financial realities can look different for employed lawyers\, those in private practice\, partnerships\, or incorporated arrangements. Rather than focusing on individualized financial advice\, the session takes a high-level\, reflective approach to financial decision-making. Participant questions submitted in advance will help shape the content\, allowing the session to address shared themes and real concerns in a large-group virtual setting. \nParticipants will leave with a clearer understanding of how to approach financial decisions with intention\, align money choices with personal values and goals\, and reduce financial stress—so finances become a source of stability rather than added pressure\, both personally and professionally. \nPresenter: Mark Binder\, Blue Cross Manitoba \nClick to register for From Law School Debt to Financial Confidence \n___________ \nIn partnership with the Law Society of Saskatchewan\, CLIA will be hosting webinars related to well-being in the legal profession throughout the month of May. Building on the Canadian Mental Health Association’s Mental Health Week and the results of the National Study on the Health and Wellness Determinants of Legal Professionals in Canada\, we will be sharing free webinars available to members in CLIA jurisdictions. \nFree hour-long webinars will be held from noon – 1pm (CST)\, 2pm – 3pm (EDT). Register for each webinar individually. Note that the webinars will be provided in both French and English and registration is limited to 500 registrants. \nEach webinar offers 1 hour of continuing professional development in Saskatchewan\, Manitoba\, Newfoundland and Labrador\, Northwest Territories\, and Nunavut\, and may be eligible for mandatory continuing professional development in other jurisdictions.
URL:https://devsite.lawsociety.sk.ca/event/free-webinar-from-law-school-debt-to-financial-confidence-cpd-453-1/
LOCATION:Online
CATEGORIES:Collaborative Event,CPD Activity,Virtual
ORGANIZER;CN="Continuing Professional Development":MAILTO:cpd@lawsociety.sk.ca
END:VEVENT
END:VCALENDAR