How to fix past midnight for a bar/club
-
I am building my wordpress site and love this plugin but as a bar all of my hours go to midnight or later which resets in this plugin if you try to enter ending hours after midnight.
Version 2 is said to have support for this but until it comes out go to OpeningPeriod.class.php in the /lib/classes folder in the plugin.
In the last lines it reads:
function correctValues() {
return ( $this->start < $this->end );change the < to a > and it wont reset when you save the hours. I am not sure if this will cause any adverse bugs but it is working fine so far for me.
final code:
function correctValues() {
return ( $this->start > $this->end );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to fix past midnight for a bar/club’ is closed to new replies.