I have problems with dates and times. Although in the settings I have specified the Italian date and time format. In the parts marked in yellow in this photo: https://ibb.co/ZfJ2PVC
the dates are represented in English format. How do I solve?

Also I’d like to know how you can change a category setting. In particular, on the main page the elements look like this:
https://ibb.co/VCVk9k7
being that it is too messy I would like them to be represented like this: https://ibb.co/b58XvvQ
Can anyone tell me the necessary code / file to modify. Thanks so much

    zmaim81 Check the partial localMenu
    You should add the class “collapsed” to the container of the category.
    Sorry I can’t be more specific. I’m from the phone.

      `<div class=“menu-group”>
      <?php if (!count($groupedMenuItems)) { ?>
      <div class=“menu-group-item”>
      <p><?= lang(‘igniter.local::default.text_no_category’); ?></p>
      </div>
      <?php }
      else { ?>
      <?php $index = 0;
      foreach ($groupedMenuItems as $categoryId => $menuList) { ?>
      <?php
      $hasCategory = $categoryId > 0;
      $index++;
      ?>
      <div class=“menu-group-item”>
      <?php if ($hasCategory) {
      $menuCategory = array_get($menuListCategories, $categoryId);
      $menuCategoryAlias = strtolower(str_slug($menuCategory->name));
      ?>
      <div id=“<?= $menuCategoryAlias; ?>-heading” role=“tab”>
      <h4
      class=“category-title cursor-pointer”
      data-toggle=“collapse”
      data-target=“#<?= $menuCategoryAlias; ?>-collapse”
      aria-expanded=“false”
      aria-controls=“<?= $menuCategoryAlias; ?>-heading”
      ><?= e($menuCategory->name); ?><span class=“collapse-toggle text-muted pull-right”></span></h4>
      </div>
      <div
      id=“<?= $menuCategoryAlias; ?>-collapse”
      class=“collapse <?= $index < 5 ? ‘show’ : ''; ?>”
      role=“tabpanel” aria-labelledby=“<?= $menuCategoryAlias; ?>”
      >
      <div class=“menu-category”>
      <?php if (strlen($menuCategory->description)) { ?>
      <p><?= nl2br($menuCategory->description); ?></p>
      <?php } ?>

                              <?php if ($menuCategory->hasMedia('thumb')) { ?>
                                  <div class="image">
                                      <img
                                          class="img-responsive"
                                          src="<?= $menuCategory->getThumb([
                                              'width' => $menuCategoryWidth,
                                              'height' => $menuCategoryHeight,
                                          ]); ?>"
                                          alt="<?= $menuCategory->name; ?>"/>
                                  </div>
                              <?php } ?>
                          </div>`

        what should i change?
        This is the code of Localmenu/grouped

          zmaim81 I haven’t tested this yet but try this

          __partials\localMenu\grouped.php_
          Change this line
          class="collapse <?= $index < 5 ? 'show' : ''; ?>"

          to

          class="collapse <?= $index < 5 ? '' : 'show'; ?>"

          make a backup of your files first!

          It works perfectly thanks!
          But what about the date and time format do you know what I could change?

            5 days later

            zmaim81 Hi. Have you solved the 24h issue’? I have the same problem
            Thanks

              yes. You have to go to: vendor>nesbot>carbon>src>carbon>lang

              find file “en.php” and edit in your language.

              Then you have to edit all components that use “date and time format”
              For example “local box” ecc. Edit “time picker”, “date picker” ecc. in your format.

                I’v just modified local box, time picker, date picker . But i have the same problem. Can you help me? I’ve this problem only in the menù page. Checkout is ok. Thank you so much in advance.

                  edit localbox in partial>menu …

                  localbox isn’t global component so you have to edi ALL components manually