Title: Trouble displaying attribute values
Last modified: August 21, 2016

---

# Trouble displaying attribute values

 *  [cerstrand_mace](https://wordpress.org/support/users/cerstrand_mace/)
 * (@cerstrand_mace)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/trouble-displaying-attribute-values/)
 * I’m using Woocommerce for product display on a website I’m working on. When I’m
   fetching my custom attribute values I get what seems to be random empty strings
   between the values. Watch an example here:
 * [http://tec.macework.se/produkt/premium-short-sleeve-jersey-white/](http://tec.macework.se/produkt/premium-short-sleeve-jersey-white/)
 * Here’s my code for fetching the values:
 *     ```
       <?php
         $atts = get_the_terms( $product->id, 'pa_attribute-1');
   
       	foreach ( $atts as $att ) { ?>
       	 <li>   <?php echo $att->name; ?> </li>
   
       <?php } wp_reset_query(); ?>
   
       <?php $atts = get_the_terms( $product->id, 'pa_attribute-2');
   
       foreach ( $atts as $att ) { ?>
   
       <li>   <?php echo $att->name; ?> </li> 
   
        <?php }  wp_reset_query(); ?>
   
       <?php
       $atts = get_the_terms( $product->id, 'pa_attribute-3');
   
       foreach ( $atts as $att ) { ?>
   
       <li>   <?php echo $att->name; ?> </li> 
   
       <?php } wp_reset_query(); ?>
   
       <?php $atts = get_the_terms( $product->id, 'pa_attribute-4');
   
        foreach ( $atts as $att ) { ?>
       <li>   <?php echo $att->name; ?> </li> 
   
        <?php } wp_reset_query(); ?>
       ```
   
 * What’s up with the empty strings?
 * [http://wordpress.org/plugins/woocommerce/](http://wordpress.org/plugins/woocommerce/)

The topic ‘Trouble displaying attribute values’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

## Tags

 * [attributes](https://wordpress.org/support/topic-tag/attributes/)

 * 0 replies
 * 1 participant
 * Last reply from: [cerstrand_mace](https://wordpress.org/support/users/cerstrand_mace/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/trouble-displaying-attribute-values/)
 * Status: not resolved