found out that end_time AM/PM has a bug in method convert_time.
end_time does not contain String AM or PM, it contains either 0 or 1. I wrote a quick fix in class-fws-schedule.php by adding the following after line 86:
if ($time_array[2] == 0) {
$time_12_hour = ‘AM’;
}
I am creating a weekly class schedule to post on our website that will show our classes and times available. Some of our classes start at 6 or 9 am and end 1 hour later at 7am or 10am. Even though I choose AM for the end time it shows up as PM on the page.
I have WordPress 6.1.1 installed Please help!
Thank you, Deanna
]]>