Hello @rfriend1979 ,
The month dropdown is dynamic, it always shows 12 months from the current selected month, so the calendar is not limited to 12 months.
But i can see how this is inconvenient. To display more than 12 months in the dropdown, you will need to add this code to your theme’s functions.php file.
add_filter('wpsbc_calendar_output_month_selector_months_after', function(){
return 36;
});
You can do this from WP Admin -> Appearance -> Theme Editor.
Change 36 to the number of months you want to show.
-
This reply was modified 5 years, 3 months ago by
Roland Murg. Reason: formatting issue
-
This reply was modified 5 years, 3 months ago by
Roland Murg.
Any way this functionality be implemented as a dropdown in the next release?