filtering by date doesn't work

Home Forums Calendar Products Events Calendar PRO filtering by date doesn't work

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1233667
    Deven
    Participant

    when trying to filter events by date, the entire screen gets a dark gray overlay, but i’m unable to click the popup calendar to select a date and actually filter the results on the page. you can see the bug repro here:

    http://test.kwaddle.com/index.php/programs/list/

    #1234695
    Brook
    Participant

    Howdy Deven,

    I would love to help you with this.

    Something on your website, probably your theme, is adding the .offcanvas-active theme to your <body> element when you click on the datepicker. This is causing the following CSS to take effect:

    body.offcanvas-active:before {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 1001;
     opacity: 1;
     background-color: rgba(0,0,0,0.7);
    }

    The easiest way to hide this would be with some more CSS. You could add custom CSS to your website to hide that overlay on Events pages:

    body.post-type-archive-tribe_events.offcanvas-active:before {
     display:none;
    }

    Does that all make sense? Did that do the trick?

    Cheers!

    – Brook

    #1234740
    Deven
    Participant

    thank you for the reply! i will try your workaround and post whether it works or not.

    #1236067
    Brook
    Participant

    You are welcome! Definitely let me know how it goes, or if you need anything else. I’ll be here to help.

    Cheers!

    – Brook

    #1237483
    Deven
    Participant

    Thanks Brook! Your suggested fix worked great. I still have no idea what my theme (Javo Spot) was doing with the body.offcanvas-active:before CSS rule, but your fix definitely did the trick.

    #1238941
    Brook
    Participant

    Excellent news! Thank you for getting back.

    I am not sure either. Perhaps your theme uses a datepicker elsewhere, and in that location when you click it the page goes dark like that?

    I am happy we could find a fix though. Cheers!

    – Brook

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘filtering by date doesn't work’ is closed to new replies.