ched Posted January 20 Share Posted January 20 Hello, I have added a hook to remove side bars ( Categories & Action & and Choose Currency) from all product pages. But this works only for Desktop and not for Mobile. What I should add to be removed from all type of devices? Here is the hook that I've added : <?php # Cart Sidebar Removal / Resizing v8.1 Hook # Written by brian! function cart_remove_sidebars_hook($vars) { // $validtemplates = array("domainregister","domaintransfer"); if ($vars['inShoppingCart'] && !in_array($vars['templatefile'],$validtemplates)) { $head_return = "<style>#order-standard_cart .cart-body { width:100% !important; } .cart-sidebar {display: none;}</style>"; return $head_return; } } add_hook("ClientAreaHeaderOutput",1,"cart_remove_sidebars_hook"); Thank youu 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.