Listo provides commonly used lists, making it easier for developers to create plugins and themes without having to manually create these lists themselves.
Access Ready-made Lists
With Listo, you can easily access ready-made lists such as countries, organizations, or any other commonly used list, saving you time and effort in creating these lists from scratch.
Customize Lists Effortlessly
Listo allows you to customize the lists according to your needs by providing options such as grouping, sorting, and ordering. This gives you control over how the lists are displayed and used in your projects.
LISTO is an excellent little addition to Contact Form 7. Saves lots of time. Only one small snag in the list of countries is that they're sorted in alphabetical order of the 3-letter code for each country, rather than the country's name. Most of the time that makes hardly any difference, except for the United Kingdom, whose three-letter code is GBR, which places the UK between Gabon and Guinea (or somewhere around there) in the drop-down list, making it v diff to find. But this is easily sorted. Just manually move that line by editing the list in the file countries.php in wp-content/plugins/listo/modules/. Problem solved. Great plugin.
Excellent and useful plugin, unfortunately list countries are not accurately by alphabetical order.
Thanks to the community, add this to you function.php and it will work like a charm.
function wpcf7_listo_ordered( $data) {
sort($data);
return $data;
}
add_filter( 'wpcf7_form_tag_data_option', 'wpcf7_listo_ordered', 11, 1 );