Title: Brands Description
Last modified: July 8, 2017

---

# Brands Description

 *  Resolved [sroskylos](https://wordpress.org/support/users/sroskylo1/)
 * (@sroskylo1)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/brands-description-2/)
 * I create an page taxonomy-pwb-brand.php and i was output the description with
   the following code
 *     ```
       <?php
             /**
              * woocommerce_archive_description hook.
              *
              * @hooked woocommerce_taxonomy_archive_description - 10
              * @hooked woocommerce_product_archive_description - 10
              */
             do_action( 'woocommerce_archive_description' );
   
           ?>
       ```
   
 * In version 1.4.5 and 1.5 does not work and i must rollback to 1.4.4 to show up
   the description.
 * Any help?
 * How can i output the brand description?
 * Thank you for this awesome plugin 🙂

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

 *  Thread Starter [sroskylos](https://wordpress.org/support/users/sroskylo1/)
 * (@sroskylo1)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/brands-description-2/#post-9354190)
 * I figured out with a little mod from this [threat](https://wordpress.org/support/topic/add-brand-description-to-simple-product-page/#post-8905344).
 * Add the code on function.php
 *     ```
       //Brand description shortcode
       function custom_pwb_brand_info() {
   
         //show brand description
                 if( is_product_taxonomy() ){
           $brands = wp_get_post_terms( get_the_ID(), 'pwb-brand' );
           foreach( $brands as $brand ) {
             echo '<p>'.$brand->description.'</p>';
           }
         }
   
       }
       add_shortcode( 'custom_pwb_brand_info', 'custom_pwb_brand_info' );
       ```
   
 * Place in brand custom page the shortcode
    `[custom_pwb_brand_info]`
 *  [niclamarino](https://wordpress.org/support/users/niclamarino/)
 * (@niclamarino)
 * [8 years, 6 months ago](https://wordpress.org/support/topic/brands-description-2/#post-9503770)
 * Hi, I’ve tried to add this code but I receive an error back.
    My brand description
   isn’t showing anywhere, please help

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

The topic ‘Brands Description’ is closed to new replies.

 * ![](https://ps.w.org/perfect-woocommerce-brands/assets/icon-256x256.jpg?rev=2912506)
 * [Perfect Brands for WooCommerce](https://wordpress.org/plugins/perfect-woocommerce-brands/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/perfect-woocommerce-brands/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/perfect-woocommerce-brands/)
 * [Active Topics](https://wordpress.org/support/plugin/perfect-woocommerce-brands/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/perfect-woocommerce-brands/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/perfect-woocommerce-brands/reviews/)

## Tags

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

 * 2 replies
 * 2 participants
 * Last reply from: [niclamarino](https://wordpress.org/support/users/niclamarino/)
 * Last activity: [8 years, 6 months ago](https://wordpress.org/support/topic/brands-description-2/#post-9503770)
 * Status: resolved