CanadianBacon Posted February 18, 2018 Share Posted February 18, 2018 Hi, I would like to know if there is any way to have the Show Menu Button always active in client area? Gif : Spoiler https://i.gyazo.com/f9bcf90990dee5c8be90460814085015.mp4 As you can see I would like the menu open at all times. Thanks for any help! Link to comment Share on other sites More sharing options...
brian! Posted February 18, 2018 Share Posted February 18, 2018 5 hours ago, CanadianBacon said: As you can see I would like the menu open at all times. first you could disable the Sidebar toggle in the settings -> setup -> general settings -> ordering -> sidebar toggle option... that will remove the button. then you could edit the products.tpl template and change... <div class="row row-product-selection"> <div class="col-xs-3 product-selection-sidebar" id="premiumComparisonSidebar"> {include file="orderforms/standard_cart/sidebar-categories.tpl"} </div> <div class="col-xs-12"> to... <div class="row row-product-selection"> <div class="col-md-3 pull-md-left sidebar hidden-xs hidden-sm"> {include file="orderforms/standard_cart/sidebar-categories.tpl"} </div> <div class="col-md-9"> you might have to tweak the width (using custom.css) of the comparison panels if you still want to show 3 per line. Link to comment Share on other sites More sharing options...
Recommended Posts