• Resolved itmjlee

    (@itmjlee)


    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

    (@wcmp)

    Hi @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

    (@itmjlee)

    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

    (@wcmp)

    @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.