I know others have posted on the topic, but they all seem to refer to some option on the settings page that you can change the start day of the week with. It doesnt show up on my version. can anyone here tell me how to change it manually?
-Martin
I know others have posted on the topic, but they all seem to refer to some option on the settings page that you can change the start day of the week with. It doesnt show up on my version. can anyone here tell me how to change it manually?
-Martin
its for the-events-calendar by the way :P
in table.php line 4:
$startOfWeek = get_option( 'start_of_week', 0 );
change that to:
/* $startOfWeek = get_option( 'start_of_week', 0 ); */
$startOfWeek = 0;
for fun:
Saturday - Sunday = 0 - 6
So if you want the week to start on Thursday,
$startOfWeek = 4;
Why you'd want to? who knows but you can ;)
Just Change the "Week Starts On" value from Settings > General to the day you want and it should work fine.
You must log in to post.