• How Tos
  • How to display all Menu options without scroll in Customer Account Menu Screen

Currently, the menu options are hidden due to scroll which the user is not aware of and may miss the options. Use below custom CSS to display all the menu items without scroll.

.account-menu
{
position: relative;
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: 100px 100px;
grid-gap: 5px;
}

It was meant to be in grid but I forgot to change that in the last update.

The short version to achieve the same:

.account-menu {
    flex-wrap: wrap !important;
}
.account-menu .my-account-menu-item-block {
    margin-bottom: 15px !important;
}

Wish we could also do grid on the category display.

4 months later

Also, instead of Menu being showed in toggled way, is their a chance to show them as tabbed model,..
Like below the Store Information these horizontal tab come,

Featured tab | MenueCat1 | MenuCat2 | n so on...

this is a horizontal slidable tables...

the reason is simple..

now in each menu tab category, if the no.of items is more than 30, then u can apply infinite scrolling whn the customer scrolls down in that particular tab to find his item to buy.

This way even if thr are 100+ or 1000+ items in each category can be accommodated n reduces the load of getting all the items when the restaurant/store loads.

Plzz think of it...

    deppu1347 This discussion was about "Accounts Page" not the Items page.

    Please keep the discussion to the topic so that other users can be benefited with the answers.

      Saurabh Sure... Sorry, getting used with the forum here. which tag I can make a request for new option or suggestion, to improve the business logic in foodomaa, n help it in becoming one of the best app in this segment.

      Also, in India, its now mandatory to print the FSSAI code on the bill.. so may b in your next update, u can add the certification code to get printed on the thermal printer n email invoice... Just a suggestion.

      Also, where can see the features that will be incorporated in the new update....

      I have been checking many sites that run on ur code n also the foodomaa website..

      Write a Reply...