Hello @dmag55
Thanks for reaching out.
If you want to hide the “Dokan News Updates” you may need to add a few custom codes. As we don not provide any custom solutions as per our support policy, still, I want to help you with the solution you are looking for.
You just need to add this code inside your child theme’s function.php file.
add_action('admin_head', 'hide_news_update');
function hide_news_update() {
echo '<style>
.dokan-dashboard .widgets-wrapper .left-side .postbox:nth-child(2){
display:none!important;
}
</style>';
}
If you are not familiar with child themes then you may follow this link to know how to create a child theme.
Have a nice day!