This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Horizontal Results not working

#5265
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

I have found a solution, the images should now appear. I put the following code to your themes functions.php file to achieve that:

[php]if (!function_exists("parse_tpl_image")) {
add_filter( "asp_results", "parse_tpl_image", 1, 1 );

function parse_tpl_image($results) {
foreach ($results as $k => $result) {
if ($result->image == null || $result->image == "") {
$m = bdw_get_images_plugin($result->id, ‘directory-single-thumb’);
if (is_array($m) && isset($m[0][‘file’])) {
$results[$k]->image = $m[0][‘file’];
}
}
}
return $results;
}
}[/php]