To hide the ‘products’ menu tab, you can add this CSS to your site:
button.marketking_tablinks[value="marketking_vendor_tab_products"] {
display: none;
}
Additionally, to set a different tab as default, you can add this PHP code snippet (to functions.php or any snippets plugin):
add_filter('marketking_vendor_default_tab', function($default){
return 'info';
}, 10, 1);
This will ensure the “Vendor details” tab is the first one in the menu, and selected by default when a customer visits the vendor’s store page.