I have an odd thing happening with one of my views that should get posts that are published between two publish dates. The dates are set by a shortcode attribute and a custom date field set by the current page (post). It works fine for any set of dates EXCEPT if the date range crosses over from one month to the next month.
Solution:
It is a limitation of WP_Query, when the report-start "day" value is larger than the report-end "day" value, it will conduct the problem you mentioned above.
In your case, I suggest you setup the View filter with wpv_filter_query filter hook, for example:
Problem: I would like to dequeue the stylesheets and script files enqueued for the lightbox plugin, but the script I added does not seem to dequeue these assets as expected.
Solution: Use priority 1 in the third param of add_action to dequeue these assets more effectively: