Todd

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Event Calendar shows incorrect Next and Previous Month Links #74115
    Todd
    Participant

    A fix from my son (Greg Ferrell) for this:

    The bug is in file: the-events-calendar\lib\the-events-calendar.class.php
    LINE
    3461 public function nextMonth( $date ) {
    3461 return date( ‘Y-m’, strtotime( $date . ‘ +1 month’ ) );

    3472 public function previousMonth( $date ) {
    3473 return date( ‘Y-m’, strtotime( $date . ‘ -1 month’ ) );

    Here’s the fix: change “+1” and “-1” to “first day of next” and “first day of last”

    3461 public function nextMonth( $date ) {
    3461 return date( ‘Y-m’, strtotime( $date . ‘ first day of next month’ ) );

    3472 public function previousMonth( $date ) {
    3473 return date( ‘Y-m’, strtotime( $date . ‘ first day of last month’ ) );

    in reply to: Event Calendar shows incorrect Next and Previous Month Links #74111
    Todd
    Participant

    Stacy – thx for tip. Guess we all wait 🙂

    in reply to: Event Calendar shows incorrect Next and Previous Month Links #74090
    Todd
    Participant

    Just noticed (as you would expect) this problem also exists in the widget. The <> links go to the wrong months.

    in reply to: Event Calendar shows incorrect Next and Previous Month Links #74080
    Todd
    Participant

    Our best guess is an update bug…

Viewing 4 posts - 1 through 4 (of 4 total)