The Woocommerce basket appears in my forum menu. How can I get rid of it? When I look at the menu in Appearance it is not there to deal with. Is it a CSS issue?
Hi,
As you can see from the screen shot, the cart is NOT in the menu but inserts itself. I had the same problem in my theme menu. We didn't want the Woocommerce cart on it because it is only used for gift voucher purchases and not tickets so was confusing. I got a CSS solution from Thrive Themes and that worked but does not work on The Forum page. This is it:
.mini-cart-contents {
display: none !important;
}
@media only screen and (min-width: 775px) {
.tve-woo-minicart header .wrp {
padding-right: 0px !important;
}
}
This is not a regular menu, this is a dynamic menu added by your theme or other plugins. You should find the menu inserter and disable it. It doesn't have any relation to wpForo and wpForo Menu, it's being added to all available menus. For example I see this in your main menu too.It seems you've fixed for desktop version, but the mobile version still adds it:
The plugin who does this is not well coded, it work incorrect and put the extra menu for all menus without any logic.
OK Thanks Robert, I will see if I can find the origin of the insertion of this menu item.