hi ,
if you look at the link in private content. the search result page show only the date and no more information. also it is not clickable.
any idea? it would be fine if headline is showing and maybe a “read more” …
thanks and kr
dirk
hi, i found a solution myself :-)
1. install relevanssi plugin
2. put this in functions.php:
add_action(‘avf_frontend_search_form_param’, ‘av_disable_ajax_search’,9);
function av_disable_ajax_search($params)
{
$params[‘ajax_disable’] = true;
return $params;
}
br dirk