Hi there,
Thanks for letting us know about that. To fix the post type heading, please edit /includes/swift-framework/sf-content-display/sf-header.php line 932-936 with:
if(isset($post_type[$key]->labels->name)) {
$search_results_ouput .= "<h6>".$post_type[$key]->labels->name."</h6>";
} else if(isset($key)) {
$search_results_ouput .= "<h6>".$key."</h6>";
} else {
$search_results_ouput .= "<h6>".__("Other", "swiftframework")."</h6>";
}
For the post type, you’d need to edit line 904:
'post_type' => 'any',
changing it to an array of each post type to search:
'post_type' => array('post', 'page', 'product', 'portfolio'),
– Ed