Jump to content

Remove sidebar for both desktop and mobile users


ched

Recommended Posts

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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated