-2

there is a plugin called "Dokan Vendor Info Hider – Hide Vendor info from Store-list and store page " that has not been updated for a long time and does not work. Is there another solution?

1 Answers1

1

If you want to hide Dokan vendor info, you need to use this code in your theme’s functions.php file –

function dokan_remove_seller_info_option( $tabs ){  
  unset ($tabs ['seller']); 
  return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'dokan_remove_seller_info_option', 11 );
Monzur Alam
  • 512
  • 4
  • 11