首页 > 社区问答列表 >在WooCommerce WordPress中,ui-datepicker-year只显示20年。

  在WooCommerce WordPress中,ui-datepicker-year只显示20年。

我需要更新function.php文件,使其显示99年而不仅仅是20年。我正在使用Bizberg主题。

我尝试了这个方法,但没有成功扩展时间范围,问题在于滚动条仍然只允许20年,我需要99年。


function extend_date_of_birth_range() {
    ?>
    
    


P粉720716934
P粉720716934

  • P粉692052513
  • P粉692052513     2023-08-07 19:41:24 2楼

    试一下这个

    var dateRange = '"'+startYear+' : '+endYear+'"';

    将"dateRange"变量放置如下:

    // Replace "billing_date_of_birth" with the ID or name of your date of birth field
    $('#billing_date_of_birth').datepicker('option', {
         yearRange: dateRange
    });

    +0 添加回复

  • P粉071602406
  • P粉071602406   已被采纳   2023-08-07 16:12:42 1楼

    将此函数添加到function.php文件中,希望这能帮到你。

    
        
        

    +0 添加回复