Hi Taro,
Thank you for your feedback.
What could we do to improve “updates for new wordpress versions could be beter”?
Thread Starter
Taro
(@sicktb)
Hi Michael, Its already beter than some months ago.
I big plus would be the search in the admin. It can only search for Title. It would be nice to search for (at least) address, city and country. I wouldn’t mind if it can search in all fields (maybe a selector would be a option).
I also used the following function with plugin “Admin columns”
add_filter( ‘manage_edit-post_sortable_columns’, ‘my_sortable_post_column’ );
function my_sortable_post_column( $columns ) {
$columns[‘column-taxonomy’] = ‘column-taxonomy’;
$columns[‘column-meta’] = ‘column-meta’;
//To make a column ‘un-sortable’ remove it from the array
//unset($columns[‘date’]);
return $columns;
}