在WooCommerce WordPress中,ui-datepicker-year只顯示20年。
P粉720716934
2023-08-06 21:20:13
<p>我需要更新function.php文件,使其顯示99年而不僅僅是20年。我正在使用Bizberg主題。 <br /><br />我嘗試了這個方法,但沒有成功擴展時間範圍,問題在於滾動條仍然只允許20年,我需要99年。 </p><p><br /></p>
<pre class="brush:php;toolbar:false;">function extend_date_of_birth_range() {
?>
<script>
jQuery(function($) {
var currentYear = new Date().getFullYear();
var startYear = currentYear - 99;
var endYear = currentYear - 10;
// Replace "billing_date_of_birth" with the ID or name of your date of birth field
$('#billing_date_of_birth').datepicker('option', {
yearRange: startYear ':' endYear
});
});
</script>
<?php
}
add_action('wp_footer', 'extend_date_of_birth_range');</pre>
<p><br /></p>
試一下這個
將"dateRange"變數放置如下:
將此函數加入到function.php檔案中,希望這能幫到你。