Categories: CodeResources

How to remove Woocommerce sidebar from front-page using hooks

Woocommerce is one of the most popular plugins for WordPress because it’s used by anyone wants to setup online shop without the need writing a single line of code.
Themes are one of the notable features that come with Woocommerce out of box. It comes with a default theme as well as you can download many out from WordPress.org theme repository and many theme stores online. In fact most of those themes on the WordPress repository and theme stores are fully compatible with WordPress.
Therefore this post is targeting people with custom themes made by themselves or got from somewhere but haven’t come with Woocommerce support.
Let’s start right away!
Go to Appearance -> Edit after logging in to the WordPress Dashboard where Woocommerce is installed.
Look for the functions.php file. For experienced WordPress coders you can create your own site specific plugin. This is where you can add custom code.
Let’s remove a Woocommerce sidebar action.
Use the code below in your themes functions.php or site specific plugin.
<?php
remove_action( ‘woocommerce_sidebar’, ‘woocommerce_get_sidebar’, 10 );
Save and reload the front-end of your shop page.
As simple as that.
 
 
 

David

View Comments

Recent Posts

You deserve to be there at the top.

I'm glad to present about "deserving to be there at the top" at the first…

1 year ago

When not to use a forEach loop in JavaScript

A forEach loop is one of the most optimized JavaScript Higher-Order functions that make it…

5 years ago

You are not about to die poor.

In recent years, the biggest number of people I have met are characterized by the…

5 years ago

Thoughts on 13-06-2019

I promised to share my thoughts in any possible way. In fact, am happy to…

5 years ago

A beautiful thought for 29-05-2019

Hey beloved, Once in a while, I develop thoughts in my head, and instead of…

5 years ago

How to Design your career for ultimate happiness and fulfillment – Part 1.

I remember in primary school, I had different interests compared to the ones I have…

5 years ago