recherche

Maison  >  Questions et réponses  >  le corps du texte

Dans WooCommerce WordPress, ui-datepicker-year n'affiche que 20 ans.

<p>Je dois mettre à jour le fichier function.php pour qu'il affiche 99 ans au lieu de seulement 20 ans. J'utilise le thème Bizberg. <br /><br />J'ai essayé cette méthode sans succès pour étendre la plage de temps, le problème est que la barre de défilement n'autorise toujours que 20 ans, j'ai besoin de 99 ans. </p><p><br /></p> <pre class="brush:php;toolbar:false;">function extend_date_of_birth_range() { ?> <script> jQuery(fonction($) { var currentYear = new Date().getFullYear(); var startYear = currentYear - 99; var finannée = année courante - 10 ; // Remplacez "billing_date_of_birth" par le champ ID ou nom de votre date de naissance $('#billing_date_of_birth').datepicker('option', { yearRange : débutannée + ':' + finannée }); }); </script> <?php } add_action('wp_footer', 'extend_date_of_birth_range');</pre> <p><br /></p>
P粉720716934P粉720716934474 Il y a quelques jours584

répondre à tous(2)je répondrai

  • P粉692052513

    P粉6920525132023-08-07 19:41:24

    Essayez ceci

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

    Placez la variable "dateRange" comme suit :

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

    répondre
    0
  • P粉071602406

    P粉0716024062023-08-07 16:12:42

    Ajoutez cette fonction au fichier function.php, j'espère que cela vous aidera.

    <?php 
    function extend_date_of_birth_range() {
        ?>
        <script>
            jQuery(function($) {
                var currentYear = new Date().getFullYear();
                var startYear = currentYear - 99;
                var endYear = currentYear - 10;
                var dateRange = '"'+startYear+' : '+endYear+'"';
    
                // Replace "billing_date_of_birth" with the ID or name of your date of birth field
                $('#billing_date_of_birth').datepicker('option', {
                    yearRange: dateRange
                });
            });
        </script>
        <?php
    }
    add_action('wp_footer', 'extend_date_of_birth_range');
    ?>

    répondre
    0
  • Annulerrépondre