Home Forums WoodMart support forum Submenu opening action “Label & Arrow” not working!

Submenu opening action “Label & Arrow” not working!

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #654579

    ahemon0722
    Participant

    Hello there, I hope you are doing great! When I am clicking the parent menu label on my website.(I am using mobile menu as the menu for the web) It isn’t opening the submenu. It only shows the submenu when I am clicking the arrow. Although I have enabled “Label & Arrow” settings on the header. Can you please fix this?

    Also, Is it possible to give a custom space in the mobile side menu area to make sure that the wishlist and my account is at the bottom of the side menu. Thanks

    I am attaching the wordpress login and the ftp details just to you can have a look directly.

    #654661

    Luke Nielsen
    Keymaster

    Hello,

    That option should be enabled on both menus, now check how it works and let me know – https://gyazo.com/d16b3630387ccd69938eeb2cdd84e546

    Kind Regards

    #654726

    ahemon0722
    Participant

    Thanks for helping me with the first issue. But Can you help me with the following?

    “Also, Is it possible to give a custom space in the mobile side menu area to make sure that the wishlist and my account is at the bottom of the side menu. Thanks”

    #654860

    Bogdan Donovan
    Keymaster

    Hi,

    Add the following custom code in Custom CSS area in Theme Settings to visually push the Wishlist and My Account menu items to the bottom. However, since this custom code significantly affects the structure of the mobile menu, it may stop working or break other mobile menu options if you plan to modify them in the future.

    .wd-side-hidden.mobile-nav {
       display: flex;
        flex-direction: column;
    }
    
    .wd-side-hidden .wd-nav-mobile.wd-active {
        flex-grow: 1;
        display: flex;
        flex-direction: column
    }
    
    .wd-nav-mobile > li {
        flex: unset !important;
    }
    
    .wd-nav-mobile .menu-item-wishlist {
        margin-top: auto;
    }

    Kind Regards

    #654873

    ahemon0722
    Participant

    Thanks! Is it possible to add a divider just under the “close” button at the TOP. We just need on divider line to separate the close button section and the the rest.

    #654909

    Bogdan Donovan
    Keymaster

    By default, our theme already includes a border in the mobile menu header, but it has been intentionally disabled by one of the custom CSS rules present on your site (see video https://monosnap.com/file/NasG5eEzuuc1Q69OGNvjqQtjRpDvQi).

    Please review your custom code and remove the part (div.mobile-nav .wd-heading) that hides the border, and it will appear correctly.

    Kind Regards

    #655003

    ahemon0722
    Participant

    This happening time after time where the menu item are not visible in the sidebar. Can you please check the issue.? Thanks

    Attachments:
    You must be logged in to view attached files.
    #655086

    Bogdan Donovan
    Keymaster

    Hi,

    Custom code on your site is missing !important after the flex: unset; value (screenshot https://monosnap.com/file/qLO7r5tp6p9sm7TKpM6wrb6hTNqoYz).

    Please find the rule:

    .wd-nav-mobile > li {
        flex: unset;
    }

    And replace it with:

    .wd-nav-mobile > li {
        flex: unset !important;
    }

    Kind Regards

    #655182

    ahemon0722
    Participant

    Thanks For that. I just got a new issue here. please check and help https://www.youtube.com/watch?v=gkmgSomSV7g

    #655269

    Luke Nielsen
    Keymaster

    Hello,

    May I disable the 3rd party plugins and enable the default theme for testing?

    Looking forward to collaborating with you!

    Kind Regards

    #655282

    ahemon0722
    Participant

    Hello Yes, You can do all that. But I have already disabled all the 3rd party plugins to check but I still see this issue coming up. You can check if you want.

    #655291

    Luke Nielsen
    Keymaster

    Hello,

    Some products have unclosed tag – https://prnt.sc/siypeuNAmZxu, which is causing that issue.

    E.g. https://prnt.sc/jG3DExI1N9C_

    Recheck each HTML Tag that you define. Including this one – https://prnt.sc/YWXsRcxAqbC8

    Kind Regards

    #655358

    ahemon0722
    Participant

    Found It. Thank You!

Viewing 13 posts - 1 through 13 (of 13 total)