• Resolved kelderkold

    (@kelderkold)


    using woocommerce & storefront, after the update yesterday my handheld shop fuck up, the normal shop looks at it should.
    but using the handheld device i have the navigation bar on top as always, but I have a widget with the handheld menu in the right sidebar.
    I have no primary or secondary menu since it looks stupid on the top when I have 75 diffenrent kategories, it only work with 3 or 4 on the top.
    But after the products scrolling down the widgets from the right side bar are visible, ??
    can I removed the kategory sidebar on the handheld device?
    and only keep the search bar and the 10 last products under the products?

Viewing 3 replies - 1 through 3 (of 3 total)
  • So you want to hide a widget on handheld devices? That’s pretty easy, try something like this in your child themes css:

    @media screen and (max-width: 768px) {
    .your-widget {
    display: none;
    }
    }

    and only keep the search bar and the 10 last products under the products?

    I’m not sure what that means, sorry.

    Remember to include a link to your site, makes it much easier to see what you’re talking about.

    Thanks.

    Thread Starter kelderkold

    (@kelderkold)

    Slotworld.dk/butik

    I will try it later.

    My right side bar on pc there is 3 widgets.
    The one with categories in dont want on handheld.
    The second with “show 10 last shown products” is missing on the handheld
    The third “search” is ok

    Thread Starter kelderkold

    (@kelderkold)

    @media screen and (max-width: 768px) {
    .widget_nav_menu {
    display: none;
    }
    }

    Thanks that do the job

    The last shown product and search bar are all OK

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘double navigation on handheld device’ is closed to new replies.