Hello @blasyfeel
Thanks for your reply.
Please make sure you have added the mentioned code in your child theme’s functions.php file as we have tested the code from our end before sharing it with you.
Moreover, in order to hide the “Payment” tab from the vendor dashboard settings section, you can apply this below code in your child theme’s functions.php file:
function vendor_dashboard_settings_nav($settings_sub) {
unset ( $settings_sub['payment']);
return $settings_sub;
}
add_filter( 'dokan_get_dashboard_settings_nav', 'vendor_dashboard_settings_nav', 99);
If you face any difficulty implementing this, let me know.
Cheers!