Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi Laborator,
Is it possible to remove the product images and thumbnails in both the Shop page and the single product pages using custom CSS or code?
I want to list my products as a simple list without any images at all.
Thanks
Hi Josh,
Yes that is possible, you just have to add this Custom CSS:
.col-lg-6.col-md-6.col-sm-6.shop-item {
display: none;
}
.col-lg-6.col-md-6.col-sm-6.shop-item + div {
width: 100%
}
And this code in functions.php:
In the end of file. This should work for you.
Note that when you update the theme you have to re-apply the php code so keep a backup of the code above.