Home Forums WoodMart support forum Edit the products menu at minimalist

Edit the products menu at minimalist

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #192926

    vasiliszb
    Participant

    How can I edit the products menu at minimalist demo?
    I want to remove and rearrange items and also change the colour of the background of the submenu

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

    Hello,

    I saw the screenshots you attached.

    You can edit the menu from Appearance >> Menus.

    Screenshot for Clarification: https://ibb.co/n0Hp9BG

    To change the background color of the drop-down you need to add the following Custom CSS in the Custom CSS for Desktop area under Theme Settings >> Custom CSS.

    .category-nav-link .woodmart-product-categories .children {
    background: red;
    }

    You can set the color according to your needs.

    Best Regards.

    #193093

    vasiliszb
    Participant

    at the menu Appearance >> Menus, I got Categories,Main navigation,Menu left,Menu right,Mobile navigation, Top Bar Right, menus.
    None of them affects the menu under the logo

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

    Hello,

    I saw the screenshot you attached. This is not a menu this is shop page categories that are displayed under the shop title. That is coming from Products >> Categories.

    Screenshot for Clarification: https://ibb.co/BGWBsbg

    So when you create categories from Products >> Categories they will be displayed in the page title.

    Best Regards.

    #193115

    vasiliszb
    Participant

    and if I want to have some categories not to saw on this menu?
    eg. I have a main category “Home Accessories” -> “electrical-appliances” (subcategory) -> “fans” and I want to show at the menu only “electrical-appliances” with his submenu “fans”, but I don’t want to delete the main category “Home Accessories”, I want to hide it only.

    #193314

    Hello,

    Unfortunately, there is no option in theme settings to display specific categories in the shop page title.

    You can hide the specific categories using Custom CSS. But if you hide parent category from the shop title then you will not be unable to see the sub categories under it.

    If you still want to hide it then you need to add the following Custom CSS in the Global Custom CSS area under Theme Settings >> Custom CSS.

    The following CSS will hide the category whose id will be 42 from the shop page title.

    .woodmart-product-categories.has-product-count .cat-item-42 {
    display: none;
    }

    You can add the categories id according to your needs.

    Best Regards.

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