Title: Removing store title
Last modified: September 28, 2021

---

# Removing store title

 *  Resolved [itmjlee](https://wordpress.org/support/users/itmjlee/)
 * (@itmjlee)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/removing-store-title/)
 * Hi Team,
 * How do we remove the ‘Store’ label and store title under product name in shop
   page?
 * Is there any option to show / hide this?
    Or Do I need to use css to hide it?
 * Thanks.

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

 *  Plugin Author [MultiVendorX](https://wordpress.org/support/users/wcmp/)
 * (@wcmp)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/removing-store-title/#post-14919152)
 * Hi [@itmjlee](https://wordpress.org/support/users/itmjlee/), thanks for getting
   in touch with us.
 * In order to remove sole by from shop page only kindly add this code in the function.
   php of your theme :
 * – Sold by label:
    `add_filter( 'wcmp_sold_by_text_after_products_shop_page', '
   __return_false' );` – “Store” tab :
 *     ```
       add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 99 );
       function woo_remove_product_tabs( $tabs ) {
          unset( $tabs['vendor'] );            
          return $tabs;
       }
       ```
   
 *  Thread Starter [itmjlee](https://wordpress.org/support/users/itmjlee/)
 * (@itmjlee)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/removing-store-title/#post-14960800)
 * Hi Team,
 * Thanks for your reply.
    I actually didn’t mean by the sold by label. I want to
   hide the store name displayed in each product wrapper.
 * Do I need to use css to hide it?
 * Thanks.
 *  Plugin Author [MultiVendorX](https://wordpress.org/support/users/wcmp/)
 * (@wcmp)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/removing-store-title/#post-14965733)
 * [@itmjlee](https://wordpress.org/support/users/itmjlee/), can you please share
   a scrrenshot of the page so we can help you out.

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

The topic ‘Removing store title’ is closed to new replies.

 * ![](https://ps.w.org/dc-woocommerce-multi-vendor/assets/icon-256x256.gif?rev=
   3314608)
 * [MultiVendorX - WooCommerce Multivendor Marketplace AI Powered Solutions](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/dc-woocommerce-multi-vendor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/)
 * [Active Topics](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/dc-woocommerce-multi-vendor/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [MultiVendorX](https://wordpress.org/support/users/wcmp/)
 * Last activity: [4 years, 7 months ago](https://wordpress.org/support/topic/removing-store-title/#post-14965733)
 * Status: resolved