Disable sidebar in single product page

Cassy 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

Replies (3)

  1. Cassy 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

  2. Spiracle Themes 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-8cpHi76wT

    CODE 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

  3. Cassy 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?

  4. Spiracle Themes May 1, 2023 at 10:47 am

    Hi Cassey

    This is the easy method as compared to modifying the functions.php

    Best Regards

Post a Reply

Reply To: Disable sidebar in single product page
Your information: