Comments 16vibekekelway1 started the conversationJanuary 6, 2022 at 8:31amHi,On the front page on mobile, there is a Single Product right at the bottom. I would like to remove this.Judith supplied a code (below) which worked for a while, but for some reason the single product is showing again. Can you please help remove this again?Thanks in advance!Vibeke@media only screen and (min-width: 1300px){body.woocommerce:not(.single-product) ul.products[data-n-desktop-columns="4"] li.product { display: none;}}@media only screen and (min-width: 1000px){.container-wrap { padding-bottom: 0;}1 Like 2,958Andrew repliedJanuary 6, 2022 at 9:32amHello Vibeke,Use this CSS instead. .woocommerce:not(.single-product) ul.products[data-product-style]:not([data-n-desktop-columns="default"]), .woocommerce ul.products[data-product-style]:not([data-n-desktop-small-columns="default"]) { display: none; } Regards,2 Likes 16vibekekelway1 repliedJanuary 6, 2022 at 9:46amHi Andrew,Yay! That works :)Thank you very much./Vibeke2 Likes Sign in to reply ...
Hi,
On the front page on mobile, there is a Single Product right at the bottom. I would like to remove this.
Judith supplied a code (below) which worked for a while, but for some reason the single product is showing again.
Can you please help remove this again?
Thanks in advance!
Vibeke
@media only screen and (min-width: 1300px){
body.woocommerce:not(.single-product) ul.products[data-n-desktop-columns="4"] li.product {
display: none;
}
}
@media only screen and (min-width: 1000px){
.container-wrap {
padding-bottom: 0;
}
Hello Vibeke,
Use this CSS instead.
Regards,
Hi Andrew,
Yay! That works :)
Thank you very much.
/Vibeke