Crocoblock / suggestions

The suggestions for CrocoBlock project
195 stars 78 forks source link

JetEngine: Filter for posts search label #2315

Open cvl01 opened 3 years ago

cvl01 commented 3 years ago

Please, describe the feature request, making it clear to understand.

I would like to be able to customize the label of the options in the posts field type in jetengine.

Currently, the dropdown shows the post title. Can you add a filter to allow developers to modify this?

My suggestion, in includes/classes/post-search.php on line 59, add the following:

if (!empty($posts)) {
    foreach ($posts as $post) {
        $result[] = array(
            'id'   => $post->ID,
            'text' => apply_filters('jet_engine_posts_search_title', $post->post_title, $post),
        );
    }
}
cvl01 commented 1 month ago

@kaskad88?