Hi @abhisheksharma8789!
Thanks for contacting us! 🙂
You could override the function storefront_get_sidebar to remove sidebar from the single Product pages, in the following way:
function storefront_get_sidebar() {
if(!is_product()){
get_sidebar();
}
}
This can go into your child theme’s functions.php file.
Then, using CSS you could make the primary column full width:
.single-product #primary{
width:100%;
margin-right:0;
}
It tested it on my site, works well!
I use code snippet didn’t work.
Hi @abhisheksharma8789!
Could you share with us a link to your site?
We can check how else we can help you achieve your goal.
Thanks.
Hi @abhisheksharma8789!
Thank you for sending the link to your site.
I checked your product page and only found a cart widget assigned to the sidebar.
”)
Image link: https://i.ibb.co/M7ht2xw/ijasfdgij.png
Is that the sidebar you want out?
If correct, you can delete the cart widget in Appearance → Widgets, and the sidebar should disappear.
Let us know how it goes!