GetSimple Support Forum
Calendar Start Day - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Plugins (http://get-simple.info/forums/forumdisplay.php?fid=13)
+--- Thread: Calendar Start Day (/showthread.php?tid=10655)



Calendar Start Day - keframil - 2019-01-10

How can I make Sunday the first day of the week instead of Monday?


RE: Calendar Start Day - Tyblitz - 2019-01-29

(2019-01-10, 05:07:29)keframil Wrote: How can I make Sunday the first day of the week instead of Monday?

If you mean with the Calendar plugin, unfortunately you can't (it's hardcoded).
Your best bet would be to create a Google Calendar embed through https://calendar.google.com/calendar/embedhelper


RE: Calendar Start Day - keframil - 2019-01-31

Thank you for the reply, but I figured it out.
Took me a couple of days going trough every file in the code but managed to find what to edit.
Check it Out here: http://cfas.org/calendar/
Regards


RE: Calendar Start Day - datiswous - 2019-01-31

(2019-01-31, 01:55:08)keframil Wrote: Thank you for the reply, but I figured it out.
Took me a couple of days going trough every file in the code but managed to find what to edit.
Check it Out here: http://cfas.org/calendar/
Regards

Could you please supply your solution here in this topic? I am sure it is helpful for others.


RE: Calendar Start Day - keframil - 2019-01-31

(2019-01-31, 08:50:29)datiswous Wrote:
(2019-01-31, 01:55:08)keframil Wrote: Thank you for the reply, but I figured it out.
Took me a couple of days going trough every file in the code but managed to find what to edit.
Check it Out here: http://cfas.org/calendar/
Regards

Could you please supply your solution here in this topic? I am sure it is helpful for others.

I meant to do that. Here you go:
Go to: plugins\calendar\inc
Open calendar.php

First 3 lines of code:

function c_firstDay($month, $year) {
    $day = date('N', mktime(0,0,0,$month,2,$year));
    return $day;

make sure to change to a number 2 just before ,$year)); on the second line and save it.

Then Open:   client_calendar.php
scroll down to the table for the days of the week and move this line to the beginning of the table(just before Monday)

<th class="sunday"><?php i18n('calendar/Sunday'); ?></th>

And that's it.
Enjoy