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, is there an option to make the thumbnails on the search results page suqare shaped instead of circular?
Thanks!
Hi Julius,
Can you please add the code below to your Custom CSS area:
.search-results-holder .result-box .result-image a .image-placeholder, .search-results-holder .result-box .result-image a .image-placeholder>img { border-radius: 0px; }Also, add this PHP code in the functions.php file (or instead you can use this plugin)
// Disable cropping of search thumbnails function kalium_search_thumbnail_size_large_filter( $size ) { return 'large'; } add_filter( 'kalium_search_thumbnail_size', 'kalium_search_thumbnail_size_large_filter' );Have a nice day!