Hello Irina,
Sorry to take this long.
What you’re after can only be done using custom code.
For example, if you’re using the https://www.ads-software.com/plugins/categories-images/ plugin you can do something like this:
/*
* List taxonomies together with their custom upload feature.
*/
add_shortcode('list_taxonomy_terms', 'wck_list_taxonomy');
function wck_list_taxonomy($atts){
$a = shortcode_atts( array(
'tax' => '',
), $atts );
if( empty($a['tax']) || !function_exists('z_taxonomy_image_url') )
return;
$terms = get_terms( $a['tax'], array('hide_empty' => false) );
$output = '<style>
.list_tax_terms{
list-style-type: none;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
}
.list_tax_terms li{
border: 1px solid #ccc;
border-radius: 3px;
margin-right: 3%;
margin-bottom: 1rem;
padding: 0.5rem;
flex-grow:1;
flex-basis: 30%;
max-width:30%;
text-align: center;
}
.list_tax_terms li img{
max-width: 100px;
display: block;
margin: auto;
}
</style>';
if( $terms ){
$output .= '<ul class="list_tax_terms">';
foreach ($terms as $term) {
$output .= '<li><img src="'.z_taxonomy_image_url( $term->term_id, 'thumbnail', TRUE ).'" /> <a href="'.get_term_link($term).'">'.$term->name.'</a></li>';
}
$output .= '</ul>';
}
return $output;
}
Please note this code will not work with any other image category plugin.
You will have to create a new plugin like so: https://gist.github.com/sareiodata/76f701e01db6685829db
Then upload that file to your server in the plugin folder, activate the plugin then use the [list_taxonomy_terms tax=”my_custom_taxonomy”] shortcode in a page of your choosing.
Let me know if you need further help with this.