[Plugin: Editorial Calendar] Change default schedule time
-
I would like to be able to change the default scheduled time for posts – in my specific case I would like to change it from 10am to 2pm, I have tried changing (what I thought were) the relevant lines in date.extras.js from 1000 to 1400, but have not succeeded.
Line 60:
$D.strftime = function (format, time) { return new Date(time * 1400).$format(format); };Line 77:
$D.strtotime = function (time) { var d = $D.parse(time); d.addMinutes(d.getTimezoneOffset() * -1); return Math.round($D.UTC(d.getUTCFullYear(), d.getUTCMonth(), d.getUTCDate(), d.getUTCHours(), d.getUTCMinutes(), d.getUTCSeconds(), d.getUTCMilliseconds()) / 1400); };What should I change to achieve this? And would it be possible to integrate a user option for this in future?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘[Plugin: Editorial Calendar] Change default schedule time’ is closed to new replies.