• Resolved rfriend1979

    (@rfriend1979)


    Is there a way that I can increase the period available to users so that they can see dates in 2023 please?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Roland Murg

    (@murgroland)

    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?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘show dates in 2023’ is closed to new replies.