Title: Replace tags label
Last modified: January 10, 2023

---

# Replace tags label

 *  Resolved [Cezar Ayran](https://wordpress.org/support/users/ayrancd/)
 * (@ayrancd)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/replace-tags-label/)
 * Anyone know a good way to replace the tags label on WooCommerce product page 
   without having to add a translate plugin?
 * We’d like to call it Brands instead of Tags on the product page.

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

 *  [Peter Lawrenson](https://wordpress.org/support/users/lorro/)
 * (@lorro)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/replace-tags-label/#post-16360449)
 * Copy
   wp-content/plugins/woocommerce/templates/single-product/meta.phptowp-content/
   themes/your-child-theme-name/woocommerce/single-product/meta.phpand edit Tag:
   and Tags: on line 36you will need to update the template when WooCommerce update
   the master from time to time.
 * However, it will be easier to use a translate plugin:
   [https://wordpress.org/plugins/say-what/](https://wordpress.org/plugins/say-what/)
   Set up a new text change:
 * Original string
   Tag:(must be exact, no space at the end)
 * Domain
   woocommerce
 * Context
   (leave blank)
 * Replacement string
   Brand:
 * and another for Tags:
 *  Thread Starter [Cezar Ayran](https://wordpress.org/support/users/ayrancd/)
 * (@ayrancd)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/replace-tags-label/#post-16363155)
 * This is my solution:
 *     ```wp-block-code
       //loads brands on product page
       function loadTagsOnProductPage(){
           $child = get_terms( array( 'taxonomy' => 'product_tag',  'term_id' => get_the_id() ) );
           if(count($child) > 0){
               foreach($child as $cat){
                   $content = "<a href='".get_term_link($cat->term_id)."'>".$cat->name."</a>";
               }
           }else{
               $content = "Missing brand";
           }
           return $content;
       }
       add_shortcode('tags_products', 'loadTagsOnProductPage');
       ```
   
 *  [xue28 (woo-hc)](https://wordpress.org/support/users/xue28/)
 * (@xue28)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/replace-tags-label/#post-16368706)
 * Hi [@ayrancd](https://wordpress.org/support/users/ayrancd/)
 * Thanks for sharing your solution with the community!
 * Cheers!

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

The topic ‘Replace tags label’ 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/)

 * 3 replies
 * 3 participants
 * Last reply from: [xue28 (woo-hc)](https://wordpress.org/support/users/xue28/)
 * Last activity: [3 years, 2 months ago](https://wordpress.org/support/topic/replace-tags-label/#post-16368706)
 * Status: resolved