Tagged: Responsive Menu
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
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
Thanks. Works great!