Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #311056

    Hi,

    ist es möglich einen weiteren Menüpunkt zu erstellen der nur im Responsive Design erscheint?
    Ich würde gerne einen Link zum Warenkorb von Woocommerce im mobilen Menü haben, da man dort den Warenkorb sonst nur erreichen könnte nachdem man ein Produkt in den Warenkorb gelegt hat.

    Vielen Dank für eure Hilfe!

    Viele Grüße
    Christian

    #311138

    Hi Christian!

    Thank you for using the theme.

    You can add a new menu item on Appearance > Menu item which directs to the Cart page then enable the CSS Classes field on Screen Options. Apply a unique css selector on the cart menu item. Let’s use “cart-menu-item” for example. Add this on Quick CSS or custom.css to hide the menu item on desktop then show it only on mobile devices:

    @media only screen and (min-width: 767px) {
    .cart-menu-item {
    display: none;
    }
    }
    
    @media only screen and (max-width: 767px) {
    .cart-menu-item {
    display: block !important;
    }
    }
    

    Best regards,
    Ismael

    #311297

    Thanks. Works great!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Zusätzlicher Menüpunkt im Responsive Design’ is closed to new replies.