6.0 Update – Remove Side Bar Mobile Nav, for WCFM Vendor Store Page
-
Hi There,
Since the 6.0 update, can you help me update a code you provided?
Previously you provided me with a code to remove the side bar button (Show Side Bar) and Bottom Mobile Navigation (SideBar) on the Mobile from just the WCFM Store Vendor Page?
I only want to remove this for the WCFM Store Vendor Page.
The previous code no longer works:
.wcfm-store-page.offcanvas-sidebar-mobile .woodmart-toolbar .woodmart-sticky-sidebar-opener {
display: none;
}
Can you provide me with an updated code?
This is the page:
https://woocommerce-513808-1642887.cloudwaysapps.com/store/stage
This is the previous support ticket: #252688
Thanks
Hi,
Try to replace the previous code with this one:
.wcfm-store-page.offcanvas-sidebar-mobile .wd-toolbar .wd-sidebar-opener {
display: none;
}
Regards
Thanks, but it still doesn’t seem to work.
Both the Show Side Bar on the left and on the Bottom Mobile Navigation is still showing.
You have added your custom code to the mobile custom CSS area which mean that it will work on screen width 576px and lower. When I’m checking your site on following screen width this code is working correctly (https://prnt.sc/117c0pd). If you want this code to work in other screen sizes try to add it to other custom CSS areas (for example tablet or mobile landscape) or add it to the Global Custom CSS area to cover all screen sizes.