Disable sidebar in single product page
Greetings. Is it possible to disable the sidebar on the single product page? I want to leave it active only in the products archive
Replies (3)
-
April 28, 2023 at 7:56 pm
Greetings. Is it possible to disable the sidebar on the single product page? I want to leave it active only in the products archive
-
April 29, 2023 at 6:10 am
Hi Cassey
Thanks for reaching out
You have to use a plugin called Simple Custom CSS and JS. Link below
https://wordpress.org/plugins/custom-css-js/After installing and activating the plugin. Follow the steps mentioned in the screenshots below
1) https://prnt.sc/fvxgCuCSuohO
2) https://prnt.sc/lp-8cpHi76wTCODE BELOW:
(function($) {
$(document).ready(function() {
if ($("body").hasClass("single-product")) {
$("div.col-md-9").not(".right-column.col-md-9").removeClass("col-md-9").addClass("col-md-12");
$("div#woo-sidebar-wrapper").hide();
}
});
})(jQuery);Best Regards
-
April 29, 2023 at 2:37 pm
Hi, can I hide via the theme’s function.php file? In this case what code should I enter?
-
May 1, 2023 at 10:47 am
Hi Cassey
This is the easy method as compared to modifying the functions.php
Best Regards
