Support » Plugin: Taxonomy Images » [Plugin: Taxonomy Images BETA] hierarchical taxonomy

Viewing 2 replies - 1 through 2 (of 2 total)
  • WhiteAce

    (@whiteace)

    Hey there
    I’m using the woocommerce plugin & want to use txonomy-images for the products attributes,
    but I don’t see my attributes taxonomies in the settings page.
    is there a way to configure on what taxonomies the plugin will work by ID, name or something like this?

    excuse me for my english.
    best regards
    Alex

    Thread Starter robertodimarco

    (@robertodimarco)

    I don’t know what you mean, but i’m using this code for show specific taxonomies :

    <table >
    		<?php $count = 0; ?>
    		<tr>
    <!-- Change "my-taxonomy-name" with your taxonomy name->
    		<?php foreach (wp_get_post_terms($post->ID,'my-taxonomy-name') as $cat) : ?>
    
    	        <td >
    	            <img src="<?php z_taxonomy_image_url($cat->term_id); ?>"/>
    	                <p><?php echo $cat->name; ?></p>
    	        </td>
    	        <?php if(++$counter % 3 == 0) : ?> <!-- Change 3 with desired number of cells-->
    	    </tr> <!-- column -->
    	    <?php endif; ?>
    	    <?php endforeach; ?>
    	</table>

    Hope you helpful

    Roberto

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Taxonomy Images BETA] hierarchical taxonomy’ is closed to new replies.