• Resolved lographic

    (@lographic)


    Hello,

    Is it possible to display only only the current year in the dropdown menu?
    I’ve a request for this and after reading your site I’m not sure if possible.

    Thank you.

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

    (@murgroland)

    Hello @lographic ,

    It is possible by adding some custom code to your theme ??

    Go to WP Admin -> Appearance -> Theme Editor -> and add this code in your functions.php file. Make sure you are using a child theme so the code won’t be lost when your theme is updated.

    add_filter('wpsbc_calendar_output_month_selector_months_before', function($n, $calendar, $year, $month){
    	return $month - 1;
    }, 10, 4);
    
    add_filter('wpsbc_calendar_output_month_selector_months_after', function($n, $calendar, $year, $month){
    	return 12 - $month;
    }, 10, 4);

    This will only show the months from the current year in the dropdown navigation.

    Thread Starter lographic

    (@lographic)

    OK,

    Thank you for the tips! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Display only a year’ is closed to new replies.