Hi,
To remove wpdm packages from search, please add the following code at the end of your active theme’s functions.php file:
function wpdm_remove_search($query) {
if ($query->is_search) {
$post_type = array('post', 'page');
$query->set('post_type', $post_type);
};
return $query;
};
add_filter('pre_get_posts', 'wpdm_remove_search');